From c910d7be665ace12885a4d9f8c2dcceaeb9d24fd Mon Sep 17 00:00:00 2001 From: Sleekbobby1011 <99985688+Sleekbobby1011@users.noreply.github.com> Date: Wed, 23 Feb 2022 19:48:22 +0100 Subject: [PATCH] Revert "Remove Triple DES from OpenSSL section" --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c8ffcb1..5124495 100644 --- a/README.md +++ b/README.md @@ -2611,7 +2611,7 @@ openssl genrsa -out ${_fd} ${_len} ) ###### Generate private key with passphrase ```bash -# _ciph: aes128, aes256 +# _ciph: des3, aes128, aes256 # _len: 2048, 4096 ( _ciph="aes128" ; _fd="private.key" ; _len="2048" ; \ openssl genrsa -${_ciph} -out ${_fd} ${_len} ) @@ -2627,7 +2627,7 @@ openssl rsa -in ${_fd} -out ${_fd_unp} ) ###### Encrypt existing private key with a passphrase ```bash -# _ciph: aes128, aes256 +# _ciph: des3, aes128, aes256 ( _ciph="aes128" ; _fd="private.key" ; _fd_pass="private_pass.key" ; \ openssl rsa -${_ciph} -in ${_fd} -out ${_fd_pass} ```