浏览代码

Merge 1392e4b5bb into 7fcde29b80

undefined
Tom Stoneham 2 年前
committed by GitHub
父节点
当前提交
5e78bcfb33
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      README.md

+ 2
- 2
README.md 查看文件

@@ -2604,7 +2604,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} )
@@ -2620,7 +2620,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}
```


正在加载...
取消
保存