版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/inforstack/article/details/77160976
cygwin环境下
在cygwin环境下运行如下命令,输出结果即为signature
keytool -exportcert -alias [alias] -keypass [alias password] -keystore [keystore filepath] -storepass [keystore password] | md5sum
例如:当前路径下包含用于对app签名的test.keystore文件,且keystore密码为1234,别名为test,别名密码为123,则运行如下命令:
keytool -exportcert -alias TEST -keypass 1234 -keystore ./test.keystore -storepass 123 | md5sum
命令行环境下
先将keytool的输出转向到文件,然后再用md5生成工具对该文件进行md5处理
keytool -exportcert -alias TEST -keypass 1234 -keystore ./test.keystore -storepass 123 > out.text
certutil -hashfile out.text md5