Pkcs12MacOptions
Input for createPkcs12MacData.
ts
interface Pkcs12MacOptions {
readonly password: string;
readonly iterations?: number;
readonly salt?: Uint8Array;
}Properties
readonlypassword:string— Password used to derive the HMAC key via the PKCS#12 KDF.readonlyiterations?:number— PKCS#12 KDF iteration count. Default:2048.readonlysalt?:Uint8Array— Random salt. Default: 16 cryptographically random bytes.