ssl - Paypal SSL 证书更改 : Testing Verisign G5 Certificate

标签 ssl paypal openssl

我正在尝试确认,我们的服务器已准备好进行 SSL 证书更改。

根据 www.sandbox.paypal.com 上的 Microsite 迁移已完成。

运行: openssl s_client -CApath/etc/ssl/certs/-connect www.sandbox.paypal.com:443

返回 0(确定)

此测试是否明确确认我们的服务器已准备就绪?

最佳答案

openssl 连接 return code(0) 将肯定此证书检查,但您可能希望对调用进行轻微更改。

运行以下行并再次尝试 conn,(我添加了 –showcerts 参数以便打印出证书链,您可以在其中轻松识别 Verisign G5 根证书)

openssl s_client -connect api-3t.sandbox.paypal.com:443 -showcerts -CApath /etc/ssl/certs/

关于ssl - Paypal SSL 证书更改 : Testing Verisign G5 Certificate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32757184/

相关文章:

OpenSSL BN_CTX 用法

security - Magento 中媒体的 HTTPS 失败

ubuntu - 证书续订后 CouchDB 无法通过 https 工作

java - 使用 Maven 和 Java 11 通过 SSL 进行 HTTP Get 请求

paypal - 如何在 paypal 沙箱中创建 pdt 处理程序

javascript - jQuery 是在电子商务网站中处理产品变化计算的可接受方法吗?

paypal - 薪资流报告 "User authentication failed"

java - JDBC+SSL : Bundling a CA cert, 客户端证书和客户端到单个 keystore 文件中

c# - 使用 CA 证书文件验证远程服务器 X509Certificate

c - OpenSSL 函数 EVP_EncryptFinal_ex 中的内存泄漏