UNPKG

chaingate

Version:

A complete TypeScript library for connecting to and making transactions on different blockchains

9 lines (8 loc) 215 B
type pbkdf2params = { password: string; iterations: number; dkLen: number; salt: Uint8Array; }; export declare function pbkdf2(params: pbkdf2params): Promise<Uint8Array<ArrayBufferLike>>; export {};