ParsedExtension
A raw X.509v3 extension before type-specific decoding.
ts
interface ParsedExtension {
readonly oid: string;
readonly critical: boolean;
readonly valueDer: Uint8Array;
readonly valueHex: string;
}Properties
readonlyoid:string— Dotted-decimal OID identifying this extension.readonlycritical:boolean— Whether a validator MUST reject the certificate if it cannot process this extension.readonlyvalueDer:Uint8Array— DER-encoded OCTET STRING payload (extnValue).readonlyvalueHex:string— Hex-encoded form ofvalueDerfor display and comparison.