Symmetric Encryption
DES
$(openssl des -in $input_file -out $output_file -k $pwd)
$(openssl des -d -in $input_file -out $output_file -k $pwd)
AES
$(openssl $your_algo -in $input_file -out $output_file -k CipM6000)
$(openssl $your_algo -d -in $input_file -out $output_file -k CipM6000)
Last updated
Was this helpful?