Skip to content

Instantly share code, notes, and snippets.

@reintakura
Created February 12, 2020 09:46
Show Gist options
  • Save reintakura/bab1ef97275154cbfd02b6e7b0e01c94 to your computer and use it in GitHub Desktop.
Save reintakura/bab1ef97275154cbfd02b6e7b0e01c94 to your computer and use it in GitHub Desktop.
#OpenSSL encrypt
openssl enc -[algoritma] -in plain.txt -out encrypted.txt
openssl enc -d -[algoritma] -in encrypted.txt -out plain.txt
#Example
openssl enc -aes-256-cbc -in plain.txt -out encrypted.txt
openssl enc -d -aes-256-cbc -in encrypted.txt -out encrypted.txt
#Cipher commands (see the `enc' command for more details)
aes-128-cbc aes-128-ecb aes-192-cbc aes-192-ecb
aes-256-cbc aes-256-ecb base64 bf
bf-cbc bf-cfb bf-ecb bf-ofb
camellia-128-cbc camellia-128-ecb camellia-192-cbc camellia-192-ecb
camellia-256-cbc camellia-256-ecb cast cast-cbc
cast5-cbc cast5-cfb cast5-ecb cast5-ofb
des des-cbc des-cfb des-ecb
des-ede des-ede-cbc des-ede-cfb des-ede-ofb
des-ede3 des-ede3-cbc des-ede3-cfb des-ede3-ofb
des-ofb des3 desx rc2
rc2-40-cbc rc2-64-cbc rc2-cbc rc2-cfb
rc2-ecb rc2-ofb rc4 rc4-40
seed seed-cbc seed-cfb seed-ecb
seed-ofb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment