add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,12 @@
# openssl req
> OpenSSL 命令用于管理 PKCS#10 证书签名请求。
> 更多信息:<https://www.openssl.org/docs/manmaster/man1/openssl-req.html>。
- 生成一个证书签名请求以发送到证书颁发机构:
`openssl req -new -sha256 -key {{filename.key}} -out {{filename.csr}}`
- 生成一个自签名证书及其相应的密钥对,并将两者存储在一个文件中:
`openssl req -new -x509 -newkey {{rsa}}:{{4096}} -keyout {{filename.key}} -out {{filename.cert}} -subj "{{/C=XX/CN=foobar}}" -days {{365}}`