![JAR search and dependency download from the Maven repository](/logo.png)
org.spongycastle.cert.path.validations.CRLValidation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pkix Show documentation
Show all versions of pkix Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle
intended for the Android platform. Android unfortunately ships with a stripped-down version of
Bouncy Castle, which prevents easy upgrades - Spongy Castle overcomes this and provides a full,
up-to-date version of the Bouncy Castle cryptographic libs.
package org.spongycastle.cert.path.validations;
import java.util.Collection;
import java.util.Iterator;
import org.spongycastle.asn1.x500.X500Name;
import org.spongycastle.cert.X509CRLHolder;
import org.spongycastle.cert.X509CertificateHolder;
import org.spongycastle.cert.path.CertPathValidation;
import org.spongycastle.cert.path.CertPathValidationContext;
import org.spongycastle.cert.path.CertPathValidationException;
import org.spongycastle.util.Memoable;
import org.spongycastle.util.Selector;
import org.spongycastle.util.Store;
public class CRLValidation
implements CertPathValidation
{
private Store crls;
private X500Name workingIssuerName;
public CRLValidation(X500Name trustAnchorName, Store crls)
{
this.workingIssuerName = trustAnchorName;
this.crls = crls;
}
public void validate(CertPathValidationContext context, X509CertificateHolder certificate)
throws CertPathValidationException
{
// TODO: add handling of delta CRLs
Collection matches = crls.getMatches(new Selector()
{
public boolean match(Object obj)
{
X509CRLHolder crl = (X509CRLHolder)obj;
return (crl.getIssuer().equals(workingIssuerName));
}
public Object clone()
{
return this;
}
});
if (matches.isEmpty())
{
throw new CertPathValidationException("CRL for " + workingIssuerName + " not found");
}
for (Iterator it = matches.iterator(); it.hasNext();)
{
X509CRLHolder crl = (X509CRLHolder)it.next();
// TODO: not quite right!
if (crl.getRevokedCertificate(certificate.getSerialNumber()) != null)
{
throw new CertPathValidationException("Certificate revoked");
}
}
this.workingIssuerName = certificate.getSubject();
}
public Memoable copy()
{
return new CRLValidation(workingIssuerName, crls);
}
public void reset(Memoable other)
{
CRLValidation v = (CRLValidation)other;
this.workingIssuerName = v.workingIssuerName;
this.crls = v.crls;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy