Development/ETC
파일의 SHA-256 해시값 확인하기
하 선생
2021. 5. 19. 11:47
LINUX
sha256sum /path/to/file
MAC
shasum -a 256 /path/to/file
WINDOWS
CMD
CertUtil -hashfile C:\path\to\file SHA256
Powershell
Get-FileHash C:\path\to\file -Algorithm SHA256
[출처]
How to verify the SHA256 checksum of a downloaded file
When performing firmware upgrades, it is important to verify the SHA256 checksum of the file to ensure its integrity. A corrupted file render a device inoperable in most cases. The process differs ...
docs.hak5.org