新版本keytool不提供签名的md5因此可以使用以下方法
keytool -export -alias key0 -keystore key.jks -file key.cer
# powershell
Get-FileHash key.cer -Algorithm MD5 | Select -ExpandProperty Hash
# bash
md5sum key.cer
新版本keytool不提供签名的md5因此可以使用以下方法
keytool -export -alias key0 -keystore key.jks -file key.cer
# powershell
Get-FileHash key.cer -Algorithm MD5 | Select -ExpandProperty Hash
# bash
md5sum key.cer