Package org.bouncycastle.asn1.x509
Class ExtensionsGenerator
java.lang.Object
org.bouncycastle.asn1.x509.ExtensionsGenerator
public class ExtensionsGenerator extends Object
Generator for X.509 extensions
-
Constructor Summary
Constructors Constructor Description ExtensionsGenerator() -
Method Summary
Modifier and Type Method Description voidaddExtension(ASN1ObjectIdentifier oid, boolean critical, byte[] value)Add an extension with the given oid and the passed in byte array to be wrapped in the OCTET STRING associated with the extension.voidaddExtension(ASN1ObjectIdentifier oid, boolean critical, ASN1Encodable value)Add an extension with the given oid and the passed in value to be included in the OCTET STRING associated with the extension.Extensionsgenerate()Generate an Extensions object based on the current state of the generator.booleanisEmpty()Return true if there are no extension present in this generator.voidreset()Reset the generator
-
Constructor Details
-
ExtensionsGenerator
public ExtensionsGenerator()
-
-
Method Details
-
reset
public void reset()Reset the generator -
addExtension
public void addExtension(ASN1ObjectIdentifier oid, boolean critical, ASN1Encodable value) throws IOExceptionAdd an extension with the given oid and the passed in value to be included in the OCTET STRING associated with the extension.- Parameters:
oid- OID for the extension.critical- true if critical, false otherwise.value- the ASN.1 object to be included in the extension.- Throws:
IOException
-
addExtension
Add an extension with the given oid and the passed in byte array to be wrapped in the OCTET STRING associated with the extension.- Parameters:
oid- OID for the extension.critical- true if critical, false otherwise.value- the byte array to be wrapped.
-
isEmpty
public boolean isEmpty()Return true if there are no extension present in this generator.- Returns:
- true if empty, false otherwise
-
generate
Generate an Extensions object based on the current state of the generator.- Returns:
- an X09Extensions object.
-