Example usage for java.security.cert PKIXCertPathChecker subclass-usage

List of usage examples for java.security.cert PKIXCertPathChecker subclass-usage

Introduction

In this page you can find the example usage for java.security.cert PKIXCertPathChecker subclass-usage.

Usage

From source file org.apache.synapse.transport.utils.sslcert.pathvalidation.PathChecker.java

/**
 * This class is used by CertificatePathValidator to check revocation status of the certificate
 * chain. Certificates in the chain will be passed to the check(..,..) method one by one.
 * This is not Thread safe since the process is state full. Should not be shared among threads.
 */
public class PathChecker extends PKIXCertPathChecker {

From source file org.apache.synapse.transport.certificatevalidation.pathvalidation.PathChecker.java

/**
 * This class is used by CertificatePathValidator to check revocation status of the certificate chain.
 * Certificates in the chain will be passed to the check(..,..) method one by one.
 * This is not Thread safe since the process is state full. Should not be shared among threads.
 */
public class PathChecker extends PKIXCertPathChecker {

From source file org.cesecore.util.PKIXCertRevocationStatusChecker.java

/**
 * A class to check whether a certificate is revoked or not using either OCSP or CRL. 
 * The revocation status will first be obtained using OCSP. If it turned out that that was not possible for 
 * some reason, a CRL will be used instead. If it was not possible to check the CRL for some reason, an 
 * exception will be thrown.
 *