Method | Description | |
---|---|---|
AddExtension ( DerObjectIdentifier oid, bool critical, Asn1Encodable extValue ) : void |
Add an extension with the given oid and the passed in value to be included in the OCTET STRING associated with the extension.
|
|
AddExtension ( DerObjectIdentifier oid, bool critical, byte extValue ) : void |
Add an extension with the given oid and the passed in byte array to be wrapped in the OCTET STRING associated with the extension.
|
|
Generate ( ) : |
Generate an X509Extensions object based on the current state of the generator.
|
|
Reset ( ) : void |
Reset the generator
|
public AddExtension ( DerObjectIdentifier oid, bool critical, Asn1Encodable extValue ) : void | ||
oid | DerObjectIdentifier | OID for the extension. |
critical | bool | True if critical, false otherwise. |
extValue | Asn1Encodable | The ASN.1 object to be included in the extension. |
return | void |
public AddExtension ( DerObjectIdentifier oid, bool critical, byte extValue ) : void | ||
oid | DerObjectIdentifier | OID for the extension. |
critical | bool | True if critical, false otherwise. |
extValue | byte | The byte array to be wrapped. |
return | void |