UNPKG

crypto-ts

Version:

Typescript library of crypto standards.

6 lines (5 loc) 232 B
import { WordArray } from '../lib/WordArray'; import { CipherParams } from '../lib/CipherParams'; export interface KDF { execute: (password: string, keySize: number, ivSize: number, salt?: WordArray | string) => CipherParams; }