mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-21 22:22:07 +02:00

* pages/*: update links and more info link script Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * cleanup: reformat code * ax-webapp: fix link * curl: fix false positive Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
1.3 KiB
1.3 KiB
certutil
सर्टीफिकेट सूचना को प्रबंधित और विन्यसित करने के लिए एक टूल। अधिक जानकारी: https://learn.microsoft.com/windows-server/administration/windows-commands/certutil।
- विन्यास सूचना या फ़ाइलों को डंप करें:
certutil {{फ़ाइलनाम}}
- एक फ़ाइल को हेक्साडेसिमल में एनकोड करें:
certutil -encodehex {{इनपुट_फ़ाइल/का/पथ}} {{आउटपुट_फ़ाइल/का/पथ}}
- एक फ़ाइल को बेस64 में एनकोड करें:
certutil -encode {{इनपुट_फ़ाइल/का/पथ}} {{आउटपुट_फ़ाइल/का/पथ}}
- बेस64-एनकोड फ़ाइल को डीकोड करें:
certutil -decode {{इनपुट_फ़ाइल/का/पथ}} {{आउटपुट_फ़ाइल/का/पथ}}
- एक फ़ाइल पर एक आपातकालिक हैश उत्पन्न करें और प्रदर्शित करें:
certutil -hashfile {{इनपुट_फ़ाइल/का/पथ}} {{md2|md4|md5|sha1|sha256|sha384|sha512}}