2018-10-23 遇到的一点小问题
产生的安装包上传前需要提交md5,网上搜了下,windows可使用cmd
进命令行再使用certutil -hashfile
获取。
记录一下。
certutil -hashfile xxx MD5
certutil -hashfile xxx SHA1
certutil -hashfile xxx SHA256
需要在同文件夹存储MD5,顺便记录一下。
certutil -hashfile xxx MD5 > xxx.md5

linux的
[root@wannoo ~]# md5sum test.apk
19218db83dff6183af129a4b52d5116a test.apk
[root@wannoo ~]# sha1sum test.apk
dc7d1597f4a6536a127de2685eef67fc1ac37a50 test.apk
[root@wannoo ~]# sha256sum test.apk
网友评论