CreatePfxInput
Input for createPfx.
ts
interface CreatePfxInput {
readonly certificates?: readonly PfxCertificateBagInput[];
readonly privateKeys?: readonly PfxPrivateKeyBagInput[];
readonly encryption?: PfxEncryptionOptions;
readonly mac?: Pkcs12MacOptions;
}Properties
readonlycertificates?:readonlyPfxCertificateBagInput[]— Certificates to include as certBag entries.readonlyprivateKeys?:readonlyPfxPrivateKeyBagInput[]— Private keys to include as keyBag entries.readonlyencryption?:PfxEncryptionOptions— PBES2 encryption settings for the key-bag ContentInfo. Omit for unencrypted.readonlymac?:Pkcs12MacOptions— PKCS#12 MAC integrity settings. Omit to skip MAC generation.