From 3ada648cc5ec070bb4a78b7302acc2edbdcf5833 Mon Sep 17 00:00:00 2001 From: Anurag Kumar <112770430+anuragxone@users.noreply.github.com> Date: Tue, 17 Oct 2023 12:10:12 +0530 Subject: [PATCH] certutil: add page (#11027) --- pages/windows/certutil.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/windows/certutil.md diff --git a/pages/windows/certutil.md b/pages/windows/certutil.md new file mode 100644 index 0000000000..9e77664ece --- /dev/null +++ b/pages/windows/certutil.md @@ -0,0 +1,24 @@ +# certutil + +> A tool to manage and configure certificate information. +> More information: . + +- 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}}`