DES (Data Encryption Standard)
Basic Encryption/Decription with OpenSSL
1. Prepare Plain Text File
echo hello > hello.txt2. Encrypt the Plain Text File
openssl des -e -in hello.txt -out encrypted.enc3. Decrypt the Encrypted File
openssl des -d -in encrypted.enc -out decrypted.txtcat decrypted.txt
# helloTriple DES
Last updated