ethers.js/packages/pbkdf2/lib/pbkdf2.d.ts
2020-11-16 23:07:24 -05:00

3 lines
187 B
TypeScript

import { BytesLike } from "@ethersproject/bytes";
export declare function pbkdf2(password: BytesLike, salt: BytesLike, iterations: number, keylen: number, hashAlgorithm: string): string;