ParsePfxOptions
Options for parsePfxDer and parsePfxPem.
ts
interface ParsePfxOptions {
readonly password?: string;
readonly macPassword?: string;
}Properties
readonlypassword?:string— Password used to decrypt PBES2-encrypted ContentInfo entries. Also used for MAC verification whenmacPasswordis omitted.readonlymacPassword?:string— Separate password for MAC verification. Falls back topasswordwhen omitted.