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,20 @@
# openssl ts
> OpenSSL 命令生成和验证时间戳。
> 更多信息:<https://www.openssl.org/docs/manmaster/man1/openssl-ts.html>。
- 生成特定文件的 SHA-512 时间戳请求并输出到 `file.tsq`
`openssl ts -query -data {{path/to/file}} -sha512 -out {{path/to/file.tsq}}`
- 检查特定时间戳响应文件的日期和元数据:
`openssl ts -reply -in {{path/to/file.tsr}} -text`
- 使用 SSL 证书文件验证时间戳请求文件和来自服务器的时间戳响应文件:
`openssl ts -verify -in {{path/to/file.tsr}} -queryfile {{path/to/file.tsq}} -partial_chain -CAfile {{path/to/cert.pem}}`
- 使用密钥和签名证书为请求创建时间戳响应并输出到 `file.tsr`
`openssl ts -reply -queryfile {{path/to/file.tsq}} -inkey {{path/to/tsakey.pem}} -signer tsacert.pem -out {{path/to/file.tsr}}`