Java java.security.cert PKIXParameters fields, constructors, methods, implement or subclass

Example usage for Java java.security.cert PKIXParameters fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.security.cert PKIXParameters.

The text is from its open source code.

Constructor

PKIXParameters(Set trustAnchors)
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 .

Method

voidaddCertPathChecker(PKIXCertPathChecker checker)
Adds a PKIXCertPathChecker to the list of certification path checkers.
voidaddCertStore(CertStore store)
Adds a CertStore to the end of the list of CertStore s used in finding certificates and CRLs.
DategetDate()
Returns the time for which the validity of the certification path should be determined.
SetgetTrustAnchors()
Returns an immutable Set of the most-trusted CAs.
voidsetCertStores(List stores)
Sets the list of CertStore s to be used in finding certificates and CRLs.
voidsetDate(Date date)
Sets the time for which the validity of the certification path should be determined.
voidsetExplicitPolicyRequired(boolean val)
Sets the ExplicitPolicyRequired flag.
voidsetInitialPolicies(Set initialPolicies)
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.
voidsetRevocationEnabled(boolean val)
Sets the RevocationEnabled flag.
voidsetSigProvider(String sigProvider)
Sets the signature provider's name.
StringtoString()
Returns a formatted string describing the parameters.