Methods Summary |
---|
public abstract void | check(java.security.cert.Certificate cert, java.util.Collection unresolvedCritExts)Checks the specified certificate and removes the processed critical
extensions from the specified list of X.509 extension OIDs.
|
public java.lang.Object | clone()Clones this {@code PKIXCertPathChecker} instance.
try {
return super.clone();
} catch (CloneNotSupportedException e) {
throw new Error(e);
}
|
public abstract java.util.Set | getSupportedExtensions()Returns the list of extensions of X.509 certificates that this {@code
PKIXCertPathChecker} is able to process.
|
public abstract void | init(boolean forward)Initializes this {@code PKIXCertPathChecker} instance for specified
checking direction.
|
public abstract boolean | isForwardCheckingSupported()Returns whether this {@code PKIXCertPathChecker} instance supports
forward checking.
|