scrypt

@safe @safe
ubyte[]
scrypt
(
in ubyte[] pass
,
in ubyte[] salt
,
uint N
,
uint r
,
uint p
,
uint dkLen
)

Parameters

pass ubyte[]

password

salt ubyte[]

cryptographic salt

N uint

CPU/memory cost parameter

r uint

block size parameter

p uint

parallelization parameter. p <= (2^32-1)*hashLen/MFLen

dkLen uint

length in octets of derived key. dkLen < 2^32

Meta