I'm using DES in TCL to encrypt some phrases and I want to store those encrypted phrases in some ascii files which I need to manipulate easily. Therefore, I would like the "encrypted phrase" to be constituted only of standard ascii characters (preferentially with no spaces).
I'm using something like this to ecrypt:
set encrypted [ DES:des -dir encrypt -key "abcdefgh" "This_phrase" ]
I would like "encrypted" to be a standard ascii code, not something that, as it happens, may even brake my terminal if displayed.
Thank you very much. Leandro.