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?

link|improve this question

67% accept rate
Look around(google, github) for a gem/plugin that does what you have mentioned. I don't think that a language needs that functionality built in. That's what gems are for. – amit_saxena Jun 1 '11 at 1:07
So it looks like both questions depend on the server. My project is using Apache with Phusion Passenger. To acquire specific attributes from the cert, such as the distinguished name, you can simply do dn = request.env['SSL_CLIENT_S_DN'] That's exactly what I'm looking for. For question 2, the "openssl" gem may be useful. Anyone's 2 cents are welcome. – webren Jun 1 '11 at 21:56
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.