1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 22:42:08 +02:00
tldr/pages/windows/certutil.md
Vedant Yadav 9538a12740
add-appxpackage: add Hindi translation; pages.*: remove locale from Microsoft links (#11286)
* add-appxpackage: add Hindi translation

* pages.*: remove locale from Microsoft links

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-10-26 23:59:28 +05:30

24 lines
693 B
Markdown

# certutil
> A tool to manage and configure certificate information.
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/certutil>.
- Dump the configuration information or files:
`certutil {{filename}}`
- Encode a file in hexadecimal:
`certutil -encodehex {{path\to\input_file}} {{path\to\output_file}}`
- Encode a file to Base64:
`certutil -encode {{path\to\input_file}} {{path\to\output_file}}`
- Decode a Base64-encoded file:
`certutil -decode {{path\to\input_file}} {{path\to\output_file}}`
- Generate and display a cryptographic hash over a file:
`certutil -hashfile {{path\to\input_file}} {{md2|md4|md5|sha1|sha256|sha384|sha512}}`