Skip to content

PfxBagAttributesInput

Optional metadata attached to a certificate or key bag inside a PFX.

ts
interface PfxBagAttributesInput {
	readonly friendlyName?: string;
	readonly localKeyId?: Uint8Array;
}

Properties

  • readonly friendlyName?: string — Human-readable label stored as a BMPString attribute.
  • readonly localKeyId?: Uint8Array — Opaque identifier linking a certificate bag to its corresponding key bag.

Released under the MIT License.