OCSP libraries for python / java / c? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T18:31:06Zhttp://stackoverflow.com/feeds/question/143515http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/143515/ocsp-libraries-for-python-java-c0OCSP libraries for python / java / c?JJarava2008-09-27T12:12:32Z2008-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#1439961Answer by maverick for OCSP libraries for python / java / c?maverick2008-09-27T16:57:12Z2008-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#1441391Answer by sylvarking for OCSP libraries for python / java / c?sylvarking2008-09-27T17:53:57Z2008-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#1890460Answer by Seth for OCSP libraries for python / java / c?Seth2008-10-09T20:20:57Z2008-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>