查看文件的md5,sha1,sha256

1.windows下查看文件的md5,sha1,sha256

//注意大小写

certutil -hashfile filename MD5

certutil -hashfile filename SHA1

certutil -hashfile filename SHA256

2.linux,也有专门的命令

md5sum file_name;

sha1sum file_name;

sha256sum file_name;

猜你喜欢

转载自blog.csdn.net/yegaomin/article/details/80405339