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,24 @@
# certutil
> 这是一个用于管理和配置证书信息的工具。
> 更多信息请访问:<https://learn.microsoft.com/windows-server/administration/windows-commands/certutil>。
- 转储配置文件或信息:
`certutil {{filename}}`
- 以十六进制编码文件:
`certutil -encodehex {{path\to\input_file}} {{path\to\output_file}}`
- 将文件编码为Base64
`certutil -encode {{path\to\input_file}} {{path\to\output_file}}`
- 解码Base64编码的文件
`certutil -decode {{path\to\input_file}} {{path\to\output_file}}`
- 生成并显示文件的加密哈希值:
`certutil -hashfile {{path\to\input_file}} {{md2|md4|md5|sha1|sha256|sha384|sha512}}`