#[unsafe(export_name = "scrypt_kdf_cf")]pub unsafe extern "C" fn scrypt_c_cf(
password: *const u8,
password_len: usize,
salt: *const u8,
salt_len: usize,
log2_n: u8,
r: u32,
p: u32,
output: *mut u8,
output_len: usize,
) -> c_int
Expand description
C export for scrypt_kdf using a libscrypt-kdf compatible API except input is taken as a cost factor.