Skip to content

DecodedExtensionValue

A successfully decoded extension value paired with its OID and criticality.

ts
interface DecodedExtensionValue<TValue> {
	readonly oid: string;
	readonly critical: boolean;
	readonly value: TValue;
}

Properties

  • readonly oid: string — Dotted-decimal OID of the decoded extension.
  • readonly critical: boolean — Whether the extension was marked critical in the certificate.
  • readonly value: TValue — Typed value produced by the ExtensionDecoder.

Released under the MIT License.