how to encrypt and decrypt a string/text

Encrypt

openssl aes-256-ecb -in encrypt.txt -e > output.txt

Decrypt

openssl aes-256-ecb -in test-output -d

Online with:

Last updated