新版jdk的keytool没有md5,解决
2022-06-30 本文已影响0人
晓函
使用
keytool -list -v -keystore xxx.keystore
得到的结果没有md5,只有sha1
image.png
使用如下命令就行
keytool -exportcert -keystore xxx.keystore | openssl dgst -md5
image.png
使用
keytool -list -v -keystore xxx.keystore
得到的结果没有md5,只有sha1
使用如下命令就行
keytool -exportcert -keystore xxx.keystore | openssl dgst -md5
image.png