ubuntu:openssl:encrypt_a_file
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ubuntu:openssl:encrypt_a_file [2021/01/29 16:12] – created peter | ubuntu:openssl:encrypt_a_file [2021/01/30 18:34] (current) – [Encrypt (interactive)] peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Ubuntu - OpenSSL - Encrypt a file ====== | ====== Ubuntu - OpenSSL - Encrypt a file ====== | ||
+ | |||
+ | ===== Get a list of ciphers that OpenSSL supports ===== | ||
+ | |||
+ | <code bash> | ||
+ | openssl enc -list | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | Supported ciphers: | ||
+ | -aes-128-cbc | ||
+ | -aes-128-cfb8 | ||
+ | -aes-128-ofb | ||
+ | -aes-192-cfb1 | ||
+ | -aes-192-ecb | ||
+ | -aes-256-cfb | ||
+ | -aes-256-ctr | ||
+ | -aes128 | ||
+ | -aes192-wrap | ||
+ | -aria-128-cbc | ||
+ | -aria-128-cfb8 | ||
+ | -aria-128-ofb | ||
+ | -aria-192-cfb1 | ||
+ | -aria-192-ecb | ||
+ | -aria-256-cfb | ||
+ | -aria-256-ctr | ||
+ | -aria128 | ||
+ | -bf -bf-cbc | ||
+ | -bf-ecb | ||
+ | -camellia-128-cbc | ||
+ | -camellia-128-cfb8 | ||
+ | -camellia-128-ofb | ||
+ | -camellia-192-cfb1 | ||
+ | -camellia-192-ecb | ||
+ | -camellia-256-cfb | ||
+ | -camellia-256-ctr | ||
+ | -camellia128 | ||
+ | -cast -cast-cbc | ||
+ | -cast5-cfb | ||
+ | -chacha20 | ||
+ | -des-cfb | ||
+ | -des-ecb | ||
+ | -des-ede-cfb | ||
+ | -des-ede3 | ||
+ | -des-ede3-cfb1 | ||
+ | -des-ede3-ofb | ||
+ | -des3-wrap | ||
+ | -id-aes128-wrap | ||
+ | -id-aes192-wrap-pad | ||
+ | -id-smime-alg-CMS3DESwrap | ||
+ | -rc2-40 | ||
+ | -rc2-64-cbc | ||
+ | -rc2-ecb | ||
+ | -rc4-40 | ||
+ | -seed-cfb | ||
+ | -sm4 | ||
+ | -sm4-ctr | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Encode a file using aes256 ===== | ||
<code bash> | <code bash> | ||
openssl enc -aes256 -salt -in test1.txt -out test1.enc | openssl enc -aes256 -salt -in test1.txt -out test1.enc | ||
</ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | Without the **-salt** option it is possible to perform efficient dictionary attacks on the password and to attack stream cipher encrypted data. | ||
+ | |||
+ | The reason for this is that without the salt the same password always generates the same encryption key. | ||
+ | |||
+ | When the salt is being used the first eight bytes of the encrypted data are reserved for the salt: it is generated at random when encrypting a file and read from the encrypted file when it is decrypted. | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Decode a file that was encrypted using aes256 ===== | ||
+ | |||
+ | <code bash> | ||
+ | openssl enc -aes256 -d -in test1.enc -out test2.txt | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Encrypt using base64 ===== | ||
+ | |||
+ | <code bash> | ||
+ | openssl enc -aes256 -a -e -salt -in test1.txt -out test1.enc | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Decrypt a file that was encrypted using base64 ===== | ||
+ | |||
+ | <code bash> | ||
+ | openssl enc -aes256 -d -in test1.enc -out test2.txt | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Encrypt (interactive) ===== | ||
+ | |||
+ | <code bash> | ||
+ | openssl enc -aes-256-cbc -in file.txt.enc -out file.txt | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | Using a low iteration count like 29 is not very useful. | ||
+ | |||
+ | The count should be made as large as you can without it becoming too annoying (1 to 2 seconds of iteration). | ||
+ | |||
+ | The current default of 10000 is var too low, even when it was released! | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Decrypt (interactive) ===== | ||
+ | |||
+ | <code bash> | ||
+ | openssl enc -aes-256-cbc -d -in file.txt.enc -out file.txt -iter 29 -k PASS | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Encrypt (non-interactive) ===== | ||
+ | |||
+ | <code bash> | ||
+ | openssl enc -aes-256-cbc -in file.txt.enc -out file.txt | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Decrypt (non-interactive) ===== | ||
+ | |||
+ | <code bash> | ||
+ | openssl enc -aes-256-cbc -d -in file.txt.enc -out file.txt -iter 29 -pass pass: | ||
+ | </ | ||
+ |
ubuntu/openssl/encrypt_a_file.1611936721.txt.gz · Last modified: 2021/01/29 16:12 by peter