public interface OcspRequestor
| Modifier and Type | Method and Description |
|---|---|
org.bouncycastle.cert.ocsp.OCSPResp |
ask(X509Certificate issuerCert,
BigInteger[] serialNumbers,
URL responderUrl,
RequestOptions requestOptions,
org.xipki.util.ReqRespDebug debug)
Asks for the status of the given certificates.
|
org.bouncycastle.cert.ocsp.OCSPResp |
ask(X509Certificate issuerCert,
BigInteger serialNumber,
URL responderUrl,
RequestOptions requestOptions,
org.xipki.util.ReqRespDebug debug)
Asks for the status of the given certificate.
|
org.bouncycastle.cert.ocsp.OCSPResp |
ask(X509Certificate issuerCert,
X509Certificate[] certs,
URL responderUrl,
RequestOptions requestOptions,
org.xipki.util.ReqRespDebug debug)
Asks for the status of the given certificate.
|
org.bouncycastle.cert.ocsp.OCSPResp |
ask(X509Certificate issuerCert,
X509Certificate cert,
URL responderUrl,
RequestOptions requestOptions,
org.xipki.util.ReqRespDebug debug)
Asks for the status of the given certificate.
|
org.bouncycastle.cert.ocsp.OCSPResp ask(X509Certificate issuerCert, X509Certificate cert, URL responderUrl, RequestOptions requestOptions, org.xipki.util.ReqRespDebug debug) throws OcspResponseException, OcspRequestorException
issuerCert - Issuer certificate. Must not be null.cert - Target certificate. Must not be null.responderUrl - Responder URL. Must not be null.requestOptions - Request options. Must not be null.debug - Request/response debug control. Could be null.OcspRequestorException - if cannot build the OCSP requestOcspResponseException - if the OCSP responder cannot be reached or the response does not match the requested
certificate.org.bouncycastle.cert.ocsp.OCSPResp ask(X509Certificate issuerCert, X509Certificate[] certs, URL responderUrl, RequestOptions requestOptions, org.xipki.util.ReqRespDebug debug) throws OcspResponseException, OcspRequestorException
issuerCert - Issuer certificate. Must not be null.certs - Target certificates. Must not be null.responderUrl - Responder URL. Must not be null.requestOptions - Request options. Must not be null.debug - Request/response debug control. Could be null.OcspRequestorException - if cannot build the OCSP requestOcspResponseException - if the OCSP responder cannot be reached or the response does not match the requested
certificate.org.bouncycastle.cert.ocsp.OCSPResp ask(X509Certificate issuerCert, BigInteger serialNumber, URL responderUrl, RequestOptions requestOptions, org.xipki.util.ReqRespDebug debug) throws OcspResponseException, OcspRequestorException
issuerCert - Issuer certificate. Must not be null.serialNumber - Serial number of the target certificate. Must not be null.responderUrl - Responder URL. Must not be null.requestOptions - Request options. Must not be null.debug - Request/response debug control. Could be null.OcspRequestorException - if cannot build the OCSP requestOcspResponseException - if the OCSP responder cannot be reached or the response does not match the requested
certificate.org.bouncycastle.cert.ocsp.OCSPResp ask(X509Certificate issuerCert, BigInteger[] serialNumbers, URL responderUrl, RequestOptions requestOptions, org.xipki.util.ReqRespDebug debug) throws OcspResponseException, OcspRequestorException
issuerCert - Issuer certificate. Must not be null.serialNumbers - Serial numbers of the target certificates. Must not be null.responderUrl - Responder URL. Must not be null.requestOptions - Request options. Must not be null.debug - Request/response debug control. Could be null.OcspRequestorException - if cannot build the OCSP requestOcspResponseException - if the OCSP responder cannot be reached or the response does not match the requested
certificates.Copyright © 2018. All rights reserved.