| Package | Description |
|---|---|
| iaik.x509.ocsp |
| Modifier and Type | Class and Description |
|---|---|
class |
UnknownResponseException
Exception that is thrown when an OCSP server sends an unknown
(= unsupported) response.
|
| Modifier and Type | Method and Description |
|---|---|
CertificateResponse |
BasicOCSPResponse.getCertificateResponse(CertID certid)
Searches for the certificate response corresponding to the certificate
identified by the given CertID.
|
abstract CertificateResponse |
Response.getCertificateResponse(CertID certid)
Searches the response for status information about the certificate
identified by the given CertID.
|
CertificateResponse |
BasicOCSPResponse.getCertificateResponse(X509Certificate targetCert,
X509Certificate issuerCert)
Searches this BasicOCSPReponse for status information about the certificate
identified by the given certificate information.
|
abstract CertificateResponse |
Response.getCertificateResponse(X509Certificate targetCert,
X509Certificate issuerCert)
Searches this Reponse for status information about the certificate
identified by the given certificate information.
|
SingleResponse |
BasicOCSPResponse.getSingleResponse(CertID certid)
Searches for the single response corresponding to the certificate
identified by the given CertID.
|
SingleResponse |
BasicOCSPResponse.getSingleResponse(X509Certificate targetCert,
X509Certificate issuerCert)
Searches this BasicOCSPReponse for status information about the certificate
identified by the given certificate information.
|
boolean |
CertificateResponse.isResponseFor(X509Certificate targetCert,
X509Certificate issuerCert)
Checks if this is a certificate response for the given certificate identifying
information.
|
boolean |
SingleResponse.isResponseFor(X509Certificate targetCert,
X509Certificate issuerCert)
Checks if this is a single response for the given certificate identifying
information.
|
void |
BasicOCSPResponse.setSignature(AlgorithmID signatureAlg,
byte[] signature)
Sets the signature value of this BasicOCSPResponse.
|
void |
OCSPRequest.setSignature(AlgorithmID signatureAlg,
byte[] signature)
Sets the signature value of this OCSP request.
|
void |
BasicOCSPResponse.sign(AlgorithmID signatureAlg,
java.security.PrivateKey issuerPK)
Signs the BasicOCSPResponse with the private key of the issuer.
|
void |
OCSPRequest.sign(AlgorithmID signatureAlg,
java.security.PrivateKey privateKey)
Signs the OCSPRequest with the private key of the requestor.
|
void |
BasicOCSPResponse.sign(AlgorithmID signatureAlg,
java.security.PrivateKey issuerPK,
java.lang.String provider)
Signs the BasicOCSPResponse with the private key of the issuer.
|
void |
OCSPRequest.sign(AlgorithmID signatureAlg,
java.security.PrivateKey privateKey,
java.lang.String provider)
Signs the OCSPRequest with the private key of the requestor.
|
X509Certificate |
BasicOCSPResponse.verify()
Verifies this BasicOCSPResponse using the included signer certificates.
|
X509Certificate |
OCSPRequest.verify()
Verifies this request using the included signer certificates.
|