与 5 个第三方盒子对话的单一证书
我有一个 Web 应用程序,它使用 CURL 与运行第三方 SDK 的 5 个盒子进行通信。所有 6 个盒子均使用 HTTPS。如果我们有一个证书并指定 CURL 使用该证书与 5 个盒子通信,这样可以吗?还是我需要有 5 个不同的证书?
I have a web application that uses CURL to talk to 5 boxes that are running third party SDKs. All 6 boxes use HTTPS. Is it fine if we have one certificate and specify CURL to use that certificate to talk to the 5 boxes or do I need to have 5 different certificates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非您使用 2 向 SSL,否则不需要任何证书即可连接到服务器。您只需要 CA 的根证书。如果他们使用商业 CA,则根证书已包含在 Curl/OpenSSL 中。
总之,您可能不需要执行任何操作即可连接到 5 个盒子。
Unless you use 2-way SSL, you don't need any certificate to connect to servers. You just need the root certificate of the CA. If they use commercial CAs, the root certificate is already included in Curl/OpenSSL.
In summary, you probably don't need to do anything to connect to the 5 boxes.