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

3 lines
175 B
TypeScript

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