org.bouncycastle.cert.jcajce.JcaX509v2CRLBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcmail Show documentation
Show all versions of bcmail Show documentation
A patched bouncycastle-mail
The newest version!
package org.bouncycastle.cert.jcajce;
import java.util.Date;
import javax.security.auth.x500.X500Principal;
import org.bouncycastle.asn1.x500.X500Name;
import org.bouncycastle.cert.X509v2CRLBuilder;
public class JcaX509v2CRLBuilder
extends X509v2CRLBuilder
{
public JcaX509v2CRLBuilder(X500Principal issuer, Date now)
{
super(X500Name.getInstance(issuer.getEncoded()), now);
}
}