pub fn pbkdf2_sha256(
password: &[u8],
salt: &[u8],
iterations: u32,
output: &mut [u8],
)Expand description
PBKDF2-SHA256 key derivation (RFC 8018)
Derives a key from a password and salt using HMAC-SHA256 as the PRF. Uses 4096 iterations as specified by WPA2.