Function scrypt

Source
pub fn scrypt(
    password: &[u8],
    salt: &[u8],
    log2_n: NonZeroU8,
    r: NonZeroU32,
    p: NonZeroU32,
    output: &mut [u8],
)
Expand description

Run scrypt with the given parameters and store the result in the output buffer.