pinkdf2
A Gleam implementation of PBKDF2 (Password-Based Key Derivation Function 2) for Erlang. Heavily indebted to erlang-pbkdf2.
gleam add pinkdf2@1
import pinkdf2
pub fn main() {
let assert Ok(key) = pinkdf2.with_defaults("password", pinkdf2.get_salt())
}
Further documentation can be found at https://hexdocs.pm/pinkdf2.