美文网首页
web接入Apple Pay 证书生成步骤

web接入Apple Pay 证书生成步骤

作者: pingxhcn | 来源:发表于2021-04-26 16:06 被阅读0次

1、


image.png

2、选择对应的 Merchant ID


image.png

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

相关文章

网友评论

      本文标题:web接入Apple Pay 证书生成步骤

      本文链接:https://www.haomeiwen.com/subject/srserltx.html