org.bouncycastle.jce.provider.ProvCrlRevocationChecker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk15on Show documentation
Show all versions of bcprov-jdk15on Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 and up.
package org.bouncycastle.jce.provider;
import java.security.cert.CertPathValidatorException;
import java.security.cert.Certificate;
import java.security.cert.X509Certificate;
import org.bouncycastle.jcajce.PKIXCertRevocationChecker;
import org.bouncycastle.jcajce.PKIXCertRevocationCheckerParameters;
import org.bouncycastle.jcajce.util.JcaJceHelper;
import org.bouncycastle.jce.exception.ExtCertPathValidatorException;
class ProvCrlRevocationChecker
implements PKIXCertRevocationChecker
{
private final JcaJceHelper helper;
private PKIXCertRevocationCheckerParameters params;
public ProvCrlRevocationChecker(JcaJceHelper helper)
{
this.helper = helper;
}
public void initialize(PKIXCertRevocationCheckerParameters params)
{
this.params = params;
}
public void init(boolean forForward)
throws CertPathValidatorException
{
if (forForward)
{
throw new CertPathValidatorException("forward checking not supported");
}
}
public void check(Certificate certificate)
throws CertPathValidatorException
{
try
{
RFC3280CertPathUtilities.checkCRLs(
params.getParamsPKIX(), (X509Certificate)certificate, params.getValidDate(), params.getSigningCert(), params.getWorkingPublicKey(), params.getCertPath().getCertificates(), helper);
}
catch (AnnotatedException e)
{
Throwable cause = e;
if (null != e.getCause())
{
cause = e.getCause();
}
throw new ExtCertPathValidatorException(e.getMessage(), cause, params.getCertPath(), params.getIndex());
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy