AES Crypt for Linux - Key File Support
Posted: Mon Dec 10, 2012 2:08 am
AES Crypt for Linux now supports use of "key files". Basically, these are files that hold your password and can be used like this:
To create a key file, just open Windows' notepad and create a one-line text file with your password inside and save it as "Unicode" or use the new utility provided as part of the aescrypt package:
It is also possible to ask aescrypt_keygen to create a random password of a given length. Suppose you wish to create a key file with a 65 character password. To do that, you would enter this command:
This was a much-requested feature and one that I personally needed. So, here it is!
Code: Select all
tar -cvf - /home | aescrypt -e -k secret.key - >backup_files.tar.aes
Code: Select all
aescrypt_keygen -p apples secret.key
Code: Select all
aescrypt_keygen -g 65 secret.key