ethers.js/packages/pbkdf2/lib/pbkdf2.d.ts

3 lines
187 B
TypeScript
Raw Normal View History

2020-11-17 07:07:24 +03:00
import { BytesLike } from "@ethersproject/bytes";
export declare function pbkdf2(password: BytesLike, salt: BytesLike, iterations: number, keylen: number, hashAlgorithm: string): string;