Tagged Questions

Online Certificate Status Protocol

learn more… | top users | synonyms

9
votes
1answer
199 views

Should I accept an OSCP responder certificate signed by the trust anchor?

Could someone please help me on the following? RFC2560 defines when an OCSP responder certificate (sigining the response) could be accepted: 1. Matches a local configuration of OCSP signing ...
4
votes
1answer
130 views

What is the use of the responderID in the OCSP response?

I am not clear on the use of the responder ID in the definition of the OCSP response. I am doing OCSP checks via Java's PKIX APIs. Using a third party library I get (during the OCSP response ...
4
votes
1answer
350 views

What tools are available to generate key-pair, enroll with SCEP, use for TLS server on .Net?

The specification I am working with requires that a key-pair be generated and a certificate be automatically enrolled via SCEP to a specified server and used as both a TLS server and client ...
2
votes
4answers
1k views

OCSP libraries for python / java / c?

Going back to my previous question on OCSP, does anybody know of "reliable" OCSP libraries for Python, Java and C? I need "client" OCSP functionality, as I'll be checking the status of Certs against ...
1
vote
1answer
81 views

why does openssl send the CA certificate in OCSP protocol

openssl ocsp program documented at http://www.openssl.org/docs/apps/ocsp.html requires that the client send the certificate AND the CA certificate to the ocsp resopnder. RFC 2560 for OCSP however, ...
1
vote
1answer
380 views

Java OCSP Client using openSSL

my requirement is like that, I have a Client CA certificate in my machine, and I am getting a customer CA cert's encoded data from a request message's header. I have to validate the customar CA ...
1
vote
3answers
622 views

OCSP Revocation on client certificate

How do I manually check for certificate revocation status in java using OCSP, given just a client's java.security.cert.X509Certificate? I can't see a clear way to do it. Alternatively, can I make ...
1
vote
5answers
3k views

OCSP command-line test tool?

Does anybody know of a tool to test OCSP responses? Preferably, something that can be used from a Windows Command-line and/or can be included (easily) in a Java/python program
0
votes
1answer
337 views

False Positive SSL “Peer's Certificate Has Been Revoked” on Firefox Only

One of my client's is having a problem that is vexing both their system admin and godaddy support, who say that everything is correct and this error should not be happening. Their SSL certificate is ...
0
votes
2answers
107 views

PKI: the procedure of checking certificate revocation status and its setup

Good day! In my asp.net web application I need to check incoming digital signatures of files. I do it by calling: SignedCms.CheckSignature(false) or SignerInfo.CheckSignature(false) (C#). And I ...
0
votes
1answer
308 views

Certificate check via OCSP in C#

I get client ID Card certificate from Request.ClientCertificate["CERTIFICATE"] and now I have to check if it's GOOD, not REVOKED or UNKNOWN. I also have a OCSP url. I checked about library ...
0
votes
0answers
275 views

CRL and OCSP behavior of iOS / Security.Framework?

I'm trying to figure out what iOS' policy is when verifying certificates using Security.Framework regarding revocation of certificates. I cannot find information about this in the docs for iOS. In the ...
0
votes
1answer
101 views

java support online certificate status protocol

I am looking into OCSP support in Java. I see that there are some APIs offered in plain java for this(i.e. without using some third-party library e.g. Bouncy Castle). Now I know, that OCSP can be ...
0
votes
1answer
194 views

Validation of certificate in java 5?

I am looking for an example for OCSP validation of client certificate in java 5. Also how the configuration in java.security file is used for this purpose?
0
votes
1answer
531 views

Exception When Reading OCSP Signing Certs in Java

I'm currently working on getting a Java application (JRE 1.5+) to talk to a Windows 2008 OCSP Responder, and I'm getting a strange error on trying to read the Responder's signing cert. I get the ...