CustomExtension
An extension not covered by the typed fields in CertificateExtensionsInput.
ts
interface CustomExtension {
readonly oid: string;
readonly value: Uint8Array;
readonly critical?: boolean;
}Properties
readonlyoid:string— Dotted-decimal OID of the extension.readonlyvalue:Uint8Array— Pre-encoded DER content for the extnValue OCTET STRING.readonlycritical?:boolean— Whether the extension is critical. Defaultfalse.