使用 openssl
工具获取,如果未安装使用 brew
安装即可。
1. 导出对应的开发证书的 p12 文件
2.提取证书
openssl pkcs12 -in 证书.p12 -clcerts -nokeys -out Certificate.crt
3. 获取MD5
openssl x509 -noout -fingerprint -md5 -inform pem -in Certificate.crt
4. 获取公钥
openssl x509 -pubkey -noout -inform pem -in Certificate.crt > PublicKey.pem
cat PublicKey.pem