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-ext-jdk15on Show documentation
Show all versions of bcprov-ext-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 to JDK 1.8. Note: this package includes the NTRU encryption algorithms.
The newest version!
package org.bouncycastle.jce.provider;
import java.security.cert.CertPathValidatorException;
import java.security.cert.Certificate;
import java.security.cert.X509Certificate;
import java.util.Date;
import org.bouncycastle.jcajce.PKIXCertRevocationChecker;
import org.bouncycastle.jcajce.PKIXCertRevocationCheckerParameters;
import org.bouncycastle.jcajce.util.JcaJceHelper;
class ProvCrlRevocationChecker
implements PKIXCertRevocationChecker
{
private final JcaJceHelper helper;
private PKIXCertRevocationCheckerParameters params;
private Date currentDate = null;
public ProvCrlRevocationChecker(JcaJceHelper helper)
{
this.helper = helper;
}
public void setParameter(String name, Object value)
{
}
public void initialize(PKIXCertRevocationCheckerParameters params)
{
this.params = params;
this.currentDate = new Date();
}
public void init(boolean forForward)
throws CertPathValidatorException
{
if (forForward)
{
throw new CertPathValidatorException("forward checking not supported");
}
this.params = null;
this.currentDate = new Date();
}
public void check(Certificate certificate)
throws CertPathValidatorException
{
try
{
RFC3280CertPathUtilities.checkCRLs(params, params.getParamsPKIX(), currentDate, params.getValidDate(),
(X509Certificate)certificate, params.getSigningCert(), params.getWorkingPublicKey(),
params.getCertPath().getCertificates(), helper);
}
catch (AnnotatedException e)
{
Throwable cause = e;
if (null != e.getCause())
{
cause = e.getCause();
}
throw new CertPathValidatorException(e.getMessage(), cause, params.getCertPath(), params.getIndex());
}
}
}