pbkdf2

Derive a key from a password and a salt using multiple iterations.

@safe
void
pbkdf2
(
D
)
(
ubyte[] derivedKey
,
in ubyte[] password
,
in ubyte[] salt
,)

Parameters

derivedKey ubyte[]

Output buffer for derived key. Slice will be filled.

password ubyte[]

Password.

salt ubyte[]

Salt.

iterationCount uint

Number of iterations.

Meta