UNPKG
crypto-ts
Version:
latest (1.0.2)
1.0.2
1.0.1
Typescript library of crypto standards.
github.com/hmoog/crypto-ts
hmoog/crypto-ts
crypto-ts
/
src
/
kdf
/
KDF.d.ts
6 lines
(5 loc)
•
232 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
WordArray
}
from
'../lib/WordArray'
;
import
{
CipherParams
}
from
'../lib/CipherParams'
;
export
interface
KDF {
execute
:
(
password
:
string
,
keySize
:
number
,
ivSize
:
number
,
salt
?:
WordArray
|
string
) =>
CipherParams
; }