| Package | Description |
|---|---|
| com.entrust.toolkit |
Contains various high-level classes that provide Toolkit JCA cryptographic provider initialization,
an Entrust User representation, a key/certificate source, a certificate set representation,
JNI initialization capabilities, PKCS #7 encoding and decoding, CMS and PKCS#7 User related
utilities, transaction counting, and an XML trust manager.
|
| iaik.ixsil.keyinfo.x509 |
| Modifier and Type | Method and Description |
|---|---|
java.security.cert.X509Certificate |
Trustmanager.getCertificate(byte[] subjectKeyIdentifierValue)
Searches the memory cache for the verification certificate that is unambigously
identified by
SubjectKeyIdentifier. |
java.security.cert.X509Certificate |
Trustmanager.getCertificate(java.security.Principal issuer,
java.math.BigInteger serialNumber)
Searches the memory cache for the verification certificate that
is unambigously identified by the issuer and serial number.
|
java.security.cert.X509Certificate[] |
Trustmanager.getCertificates(java.security.Principal principal)
Searches the trust manager for all verification certificates that have
a particular
Principal as the certificate subject. |
boolean |
Trustmanager.isTrusted(java.security.cert.X509Certificate trustCandidate)
Determines whether a specified certificate is to be trusted by
the trust management system.
|
| Modifier and Type | Method and Description |
|---|---|
java.security.cert.X509Certificate |
X509TrustManagerInterface.getCertificate(byte[] subjectKeyIdentifierValue)
Provides the certificate which is unambigously identified by the specified parameter.
|
java.security.cert.X509Certificate |
X509TrustManagerInterface.getCertificate(java.security.Principal issuer,
java.math.BigInteger serialNumber)
Provides the certificate which is unambigously identified by the specified parameters.
|
java.security.cert.X509Certificate[] |
X509TrustManagerInterface.getCertificates(java.security.Principal subject)
Provides all certificates whose subject equals the specified parameter.
|
boolean |
X509TrustManagerInterface.isTrusted(java.security.cert.X509Certificate trustCandidate)
Decides if a specified certificate "is trusted" by the trust management system.
|
void |
X509TrustManagerInterface.putCertificates(java.security.cert.X509Certificate[] certificates)
Hands over a bunch of certificates to the trust management system in order to be stored for later use.
|
void |
X509TrustManagerInterface.putCRL(java.security.cert.X509CRL cRL)
Hands over a certificate revocation list to the trust management system in order to be stored there.
|