Example usage for Java java.security.cert PKIXParameters fields, constructors, methods, implement or subclass
The text is from its open source code.
PKIXParameters(Set Creates an instance of PKIXParameters with the specified Set of most-trusted CAs. | |
PKIXParameters(KeyStore keystore) Creates an instance of PKIXParameters that populates the set of most-trusted CAs from the trusted certificate entries contained in the specified KeyStore . |
void | addCertPathChecker(PKIXCertPathChecker checker) Adds a PKIXCertPathChecker to the list of certification path checkers. |
void | addCertStore(CertStore store) Adds a CertStore to the end of the list of CertStore s used in finding certificates and CRLs. |
Date | getDate() Returns the time for which the validity of the certification path should be determined. |
Set | getTrustAnchors() Returns an immutable Set of the most-trusted CAs. |
void | setCertStores(List Sets the list of CertStore s to be used in finding certificates and CRLs. |
void | setDate(Date date) Sets the time for which the validity of the certification path should be determined. |
void | setExplicitPolicyRequired(boolean val) Sets the ExplicitPolicyRequired flag. |
void | setInitialPolicies(Set Sets the Set of initial policy identifiers (OID strings), indicating that any one of these policies would be acceptable to the certificate user for the purposes of certification path processing. |
void | setRevocationEnabled(boolean val) Sets the RevocationEnabled flag. |
void | setSigProvider(String sigProvider) Sets the signature provider's name. |
String | toString() Returns a formatted string describing the parameters. |