OCSP libraries for python / java / c? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T18:31:06Z http://stackoverflow.com/feeds/question/143515 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/143515/ocsp-libraries-for-python-java-c 0 OCSP libraries for python / java / c? JJarava 2008-09-27T12:12:32Z 2008-10-09T20:20:57Z <p>Hi all! Going back to my previous question on OCSP, does anybody know of "reliable" OCSP libraries for Python, Java and C?</p> <p>I need "client" OCSP functionality, as I'll be checking the status of Certs against an OCSP responder, so responder functionality is not that important.</p> <p>Thanks</p> http://stackoverflow.com/questions/143515/ocsp-libraries-for-python-java-c/143996#143996 1 Answer by maverick for OCSP libraries for python / java / c? maverick 2008-09-27T16:57:12Z 2008-09-27T16:57:12Z <p>Have you check pyOpenSSL.. am sure openssl supports ocsp and python binding may support it</p> http://stackoverflow.com/questions/143515/ocsp-libraries-for-python-java-c/144139#144139 1 Answer by sylvarking for OCSP libraries for python / java / c? sylvarking 2008-09-27T17:53:57Z 2008-09-27T17:53:57Z <p>Java 5 has support of revocation checking via <a href="http://java.sun.com/j2se/1.5.0/docs/guide/security/pki-tiger.html#OCSP" rel="nofollow">OCSP built in</a>. If you want to build an OCSP responder, or have finer control over revocation checking, check out <a href="http://www.bouncycastle.org/docs/docs1.5/overview-summary.html" rel="nofollow">Bouncy Castle</a>. You can use this to implement your own <a href="http://java.sun.com/javase/6/docs/api/java/security/cert/PKIXCertPathChecker.html" rel="nofollow">CertPathChecker</a> that, for example, uses non-blocking I/O in its status checks.</p> http://stackoverflow.com/questions/143515/ocsp-libraries-for-python-java-c/189046#189046 0 Answer by Seth for OCSP libraries for python / java / c? Seth 2008-10-09T20:20:57Z 2008-10-09T20:20:57Z <p><a href="http://www.openssl.org/" rel="nofollow">OpenSSL</a> is the most widely used product for OCSP in C. It's quite reliable, although incredibly obtuse. I'd recommend looking at apps/ocsp.c for a pretty good example of how to make OCSP requests and validate responses.</p> <p>Vista and Server 2008 have built-in OCSP support in CAPI; check out <a href="http://msdn.microsoft.com/en-us/library/aa377167.aspx" rel="nofollow">CertVerifyRevocation</a>.</p>