Skip to content

ParsedPfxAttribute

A single PKCS#12 bag attribute as decoded by parsePfxDer.

ts
interface ParsedPfxAttribute {
	readonly oid: string;
	readonly valuesHex: readonly string[];
}

Properties

  • readonly oid: string — Dotted-decimal OID identifying this attribute type.
  • readonly valuesHex: readonly string``[] — Hex-encoded DER of each attribute value.

Released under the MIT License.