mirror of
https://github.com/trimstray/the-book-of-secret-knowledge
synced 2024-11-25 12:40:18 +00:00
Remove Triple DES from OpenSSL section
This commit is contained in:
parent
859063552d
commit
1392e4b5bb
1 changed files with 2 additions and 2 deletions
|
@ -2602,7 +2602,7 @@ openssl genrsa -out ${_fd} ${_len} )
|
|||
###### Generate private key with passphrase
|
||||
|
||||
```bash
|
||||
# _ciph: des3, aes128, aes256
|
||||
# _ciph: aes128, aes256
|
||||
# _len: 2048, 4096
|
||||
( _ciph="aes128" ; _fd="private.key" ; _len="2048" ; \
|
||||
openssl genrsa -${_ciph} -out ${_fd} ${_len} )
|
||||
|
@ -2618,7 +2618,7 @@ openssl rsa -in ${_fd} -out ${_fd_unp} )
|
|||
###### Encrypt existing private key with a passphrase
|
||||
|
||||
```bash
|
||||
# _ciph: des3, aes128, aes256
|
||||
# _ciph: aes128, aes256
|
||||
( _ciph="aes128" ; _fd="private.key" ; _fd_pass="private_pass.key" ; \
|
||||
openssl rsa -${_ciph} -in ${_fd} -out ${_fd_pass}
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue