CertExtension Type
Represents an extension for a certificate.
Remarks
A CertExtension represents an extension that adds to or modifies an X509 Certificate. Certificate extensions are defined by their ASN.1 Object-Identifier (OID). The Value field contains the raw data of the extension which is usually ASN.1-encoded.
Fields
Critical boolean |
Whether or not the extension is defined as critical. |
OID String |
The ASN.1 Object-Identifier (OID) that defines this certificate extension. |
Value String |
The raw value of this certificate extension. This value is encoded according to the extension's ASN.1 specification. |
ValueB byte [] |
The raw value of this certificate extension. This value is encoded according to the extension's ASN.1 specification. |
Constructors
public CertExtension(String oid, byte [] value, boolean critical);