How to get hash of GitHub release files? #4748
-
For example, Where to get the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You have to download it and compute the hash. It's very simple. PowerShell - |
Beta Was this translation helpful? Give feedback.
-
@snowman You can also do it with 7Zip (you need to have it installed beforehand), just right click on a file and select 7-Zip > CRC SHA and then select the preferred algorithm and wait for 7Zip to compute it, it will show in a new window, although i mostly do it with get-filehash "filename" command as rashil2000 stated. |
Beta Was this translation helpful? Give feedback.
You have to download it and compute the hash.
It's very simple.
PowerShell -
Get-FileHash file.zip
Cmd -
certutil -hashfile file.zip SHA256
Bash -
sha256sum file.zip