X509Certificate Java 类在 Ruby 中等效吗?

发布于 2024-11-11 05:38:46 字数 516 浏览 2 评论 0原文

在 Java 中,要收集用户的证书,您可以通过以下方式实现:

X509Certificate[] certs = (X509Certificate[]) request.getAttribute("javax.servlet.request.X509Certificate");

从那里,您可以使用 checkValidity 方法检查数组中每个特定证书的有效性。在 Rails/Ruby 中,是否有类似的方法来收集用户的证书?

同样,您可以通过

System.setProperty("javax.net.ssl.keyStore", "/path/to/keystore");
System.setProperty("javax.net.ssl.trustStore", "/path/to/truststore");

Where in Rails can I build the key/truststores 来建立您的信任和密钥存储,或者完全依赖于服务器?

within Java, to gather the user's certs, you could achieve this by:

X509Certificate[] certs = (X509Certificate[]) request.getAttribute("javax.servlet.request.X509Certificate");

From there, you could check the validity using the checkValidity method for each particular cert in the array. In Rails/Ruby, is there a similar way to gather the user's certs?

Similarly, you could establish your trust and key stores via

System.setProperty("javax.net.ssl.keyStore", "/path/to/keystore");
System.setProperty("javax.net.ssl.trustStore", "/path/to/truststore");

Where in Rails can I establish the key/trust stores or is completely dependent on the server?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文