pub fn scrypt(
password: &[u8],
salt: &[u8],
params: &ScryptParams,
output: &mut [u8],
)Expand description
The scrypt key derivation function.
ยงArguments
password- The password to process as a byte vectorsalt- The salt value to use as a byte vectorparams- TheScryptParamsto useoutput- The resulting derived key is returned in this byte vector.