| Package | Description |
|---|---|
| java.security.cert |
Provides classes and interfaces for parsing and managing
certificates, certificate revocation lists (CRLs), and
certification paths.
|
| Modifier and Type | Method and Description |
|---|---|
X509Certificate |
X509CertSelector.getCertificate()
Returns the certificateEquals criterion.
|
X509Certificate |
X509CRLSelector.getCertificateChecking()
Returns the certificate being checked.
|
X509Certificate |
PKIXRevocationChecker.getOcspResponderCert()
Gets the OCSP responder's certificate.
|
X509Certificate |
TrustAnchor.getTrustedCert()
Returns the most-trusted CA certificate.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.Map<X509Certificate,byte[]> |
PKIXRevocationChecker.getOcspResponses()
Gets the OCSP responses.
|
| Modifier and Type | Method and Description |
|---|---|
X509CRLEntry |
X509CRL.getRevokedCertificate(X509Certificate certificate)
Get the CRL entry, if any, for the given certificate.
|
void |
X509CertSelector.setCertificate(X509Certificate cert)
Sets the certificateEquals criterion.
|
void |
X509CRLSelector.setCertificateChecking(X509Certificate cert)
Sets the certificate being checked.
|
void |
PKIXRevocationChecker.setOcspResponderCert(X509Certificate cert)
Sets the OCSP responder's certificate.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PKIXRevocationChecker.setOcspResponses(java.util.Map<X509Certificate,byte[]> responses)
Sets the OCSP responses.
|
| Constructor and Description |
|---|
TrustAnchor(X509Certificate trustedCert,
byte[] nameConstraints)
Creates an instance of
TrustAnchor with the specified
X509Certificate and optional name constraints, which
are intended to be used as additional constraints when validating
an X.509 certification path. |