Package | Description |
---|---|
org.bouncycastle.cert |
Basic support package for handling and creating X.509 certificates, CRLs, and attribute certificates.
|
org.bouncycastle.cert.jcajce |
JCA extensions to the certificate building and processing package.
|
Modifier and Type | Method and Description |
---|---|
X509v2CRLBuilder |
X509v2CRLBuilder.addCRL(X509CRLHolder other)
Add the CRLEntry objects contained in a previous CRL.
|
X509v2CRLBuilder |
X509v2CRLBuilder.addCRLEntry(java.math.BigInteger userCertificateSerial,
java.util.Date revocationDate,
org.bouncycastle.asn1.x509.Extensions extensions)
Add a CRL entry with extensions.
|
X509v2CRLBuilder |
X509v2CRLBuilder.addCRLEntry(java.math.BigInteger userCertificateSerial,
java.util.Date revocationDate,
int reason)
Add a CRL entry with the just reasonCode extension.
|
X509v2CRLBuilder |
X509v2CRLBuilder.addCRLEntry(java.math.BigInteger userCertificateSerial,
java.util.Date revocationDate,
int reason,
java.util.Date invalidityDate)
Add a CRL entry with an invalidityDate extension as well as a reasonCode extension.
|
X509v2CRLBuilder |
X509v2CRLBuilder.addCRLEntry(java.math.BigInteger userCertificateSerial,
java.util.Date revocationDate,
org.bouncycastle.asn1.x509.X509Extensions extensions)
Deprecated.
use method taking Extensions
|
X509v2CRLBuilder |
X509v2CRLBuilder.addExtension(org.bouncycastle.asn1.ASN1ObjectIdentifier oid,
boolean isCritical,
org.bouncycastle.asn1.ASN1Encodable value)
Add a given extension field for the standard extensions tag (tag 3)
|
X509v2CRLBuilder |
X509v2CRLBuilder.addExtension(org.bouncycastle.asn1.ASN1ObjectIdentifier oid,
boolean isCritical,
byte[] encodedValue)
Add a given extension field for the standard extensions tag (tag 3) using a byte encoding of the
extension value.
|
X509v2CRLBuilder |
X509v2CRLBuilder.setNextUpdate(java.util.Date date)
Set the date by which the next CRL will become available.
|
X509v2CRLBuilder |
X509v2CRLBuilder.setNextUpdate(java.util.Date date,
java.util.Locale dateLocale)
Set the date by which the next CRL will become available.
|
X509v2CRLBuilder |
X509v2CRLBuilder.setNextUpdate(org.bouncycastle.asn1.x509.Time date)
Set the date by which the next CRL will become available.
|
Modifier and Type | Class and Description |
---|---|
class |
JcaX509v2CRLBuilder |