2
0
mirror of synced 2025-02-25 04:25:16 +00:00
ethers.js/utils/pbkdf2.d.ts

3 lines
175 B
TypeScript
Raw Normal View History

import { Arrayish } from './bytes';
export declare function pbkdf2(password: Arrayish, salt: Arrayish, iterations: number, keylen: number, hashAlgorithm: string): Uint8Array;