UNPKG

234 BTypeScriptView Raw
1interface Result {
2 password: Uint8Array;
3 rounds: number;
4 salt: Uint8Array;
5}
6export declare function pbkdf2Encode(passphrase?: string | Uint8Array, salt?: Uint8Array, rounds?: number, onlyJs?: boolean): Result;
7export {};