1、
2、选择对应的 Merchant ID
3、使用 CSR 在线生成工具生成对应的文件:
https://myssl.com/csr_create.html
Apple Pay Payment Processing Certificate 使用ECDSA 加密方式,生成.pem 和 .key 文件,后端可能会需要 .certSigningRequest 和 .txt 文件 ,修改后缀名即可。
Apple Pay Merchant Identity Certificate 使用 RSA 加密方式,生成.pem 和 .key 文件,后端可能会需要 .certSigningRequest 和 .txt 文件 ,修改后缀名即可。
4、证书转换
.pem证书转.cer证书
openssl x509 -outform der -in demo.pem -out demo.cer
.cer证书转.pem证书
openssl x509 -inform der -in demo.cer -out demo.pem