Skip to content

CreatePfxInput

Input for createPfx.

ts
interface CreatePfxInput {
	readonly certificates?: readonly PfxCertificateBagInput[];
	readonly privateKeys?: readonly PfxPrivateKeyBagInput[];
	readonly encryption?: PfxEncryptionOptions;
	readonly mac?: Pkcs12MacOptions;
}

Properties

  • readonly certificates?: readonly PfxCertificateBagInput[] — Certificates to include as certBag entries.
  • readonly privateKeys?: readonly PfxPrivateKeyBagInput[] — Private keys to include as keyBag entries.
  • readonly encryption?: PfxEncryptionOptions — PBES2 encryption settings for the key-bag ContentInfo. Omit for unencrypted.
  • readonly mac?: Pkcs12MacOptions — PKCS#12 MAC integrity settings. Omit to skip MAC generation.

Released under the MIT License.