This is an old revision of the document!
openssl
Creating certificates and private key files
- See ssl
command line encryption
using certificates and keys
# encrypt a file named testfile.txt openssl enc -a -kfile /cygdrive/c/apache2.2.16/conf/ssl/bill.local.cert -in testfile.txt -out testfile-ssl.txt # decrypt the file back to the original openssl enc -d -a -kfile /cygdrive/c/apache2.2.16/conf/ssl/bill.local.key -in testfile-ssl.txt