mac与windows下各自的md5、sha1、sha256命令行校验工具

mac下:

md5:

openssl md5 1.txt
或者:md5 1.txt

sha1:

openssl sha1 1.txt

sha256:

openssl sha256 1.txt

windows下:

md5:

certutil -hashfile 1.txt md5

sha1:

certutil -hashfile 1.txt sha1

sha256:

certutil -hashfile 1.txt sha256

猜你喜欢

转载自blog.csdn.net/weixin_44027937/article/details/122599280