web接入Apple Pay 证书生成步骤

2021-04-26  本文已影响0人  pingxhcn

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

上一篇 下一篇

猜你喜欢

热点阅读