Skip to content

Instantly share code, notes, and snippets.

@rinjugatla
Created October 12, 2022 06:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rinjugatla/b80bada72527f2f6305bd597ab1e5053 to your computer and use it in GitHub Desktop.
Save rinjugatla/b80bada72527f2f6305bd597ab1e5053 to your computer and use it in GitHub Desktop.
Windowsのコマンドプロンプトでハッシュ計算するバッチ
@echo off
rem algorithm -> MD2, MD4, MD5, SHA1, SHA256, SHA384, SHA512
set algorithm=SHA256
certutil -hashfile %1 %algorithm%
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment