⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

pbkdf2_sha256

Function pbkdf2_sha256 

Source
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.