Saved Bookmarks
| 1. |
Solve : Convert HEX to ASCII / Encrypt Password? |
|
Answer» Hello all,
The problem is the third step: the password is there in plain text. It's a looooonnng password, hard to REMEMBER (hence my wanting her to enter something she doesn't need to TRY and remember). To OBFUSCATE the password, I did some research and DECIDED a good APPROACH is to use free command line tool to encrypt a text file: http://www.codeode.com/command-line-encrypt.html. The idea is to:
[/li][/list] All sounds good. But then I noticed that the encrypted password in the encrypted text file isn't made of only readable ASCII characters. There are other ASCII values in it that make even PSPad text editor not read it as text, but as a binary file. So another approach I thought of was to copy all the HEX values, and when needed dynamically generate the encrypted file by outputting the HEX values in to the file. But... how do I send the HEX values in to a file and make this binary/encrypted file to decrypt? Was I clear? Thanks for any help. Michael Let me get this right. You have a long password, which is hard to remember, in fact it's so hard to remember that you are going to encrypt it and use a simple, easy-to-remember password to decrypt it? |
|