A simple way to generate file digests in windows which does not have md5sum, sha1sum etc. is to use OpenSSL if it is installed. Here is how you do it
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openssl dgst -md5 <filename> | |
openssl dgst -sha1 <filename> | |
openssl dgst -sha256 <filename> |
No comments:
Post a Comment