Skip to content

ParsePfxOptions

Options for parsePfxDer and parsePfxPem.

ts
interface ParsePfxOptions {
	readonly password?: string;
	readonly macPassword?: string;
}

Properties

  • readonly password?: string — Password used to decrypt PBES2-encrypted ContentInfo entries. Also used for MAC verification when macPassword is omitted.
  • readonly macPassword?: string — Separate password for MAC verification. Falls back to password when omitted.

Released under the MIT License.