Password Hashing with PBKDF2 in Rust using Ring
The Ring cryptography library provides an implementation of PBKDF2, a standardised key derivation function that can be used to securely hash passwords. Using the ring::pbkdf2 module, we can derive a password hash and then also verify whether or not a hash matches a given password. Introduction to PBKDF2 Password Based Key Derivation… Read More »Password Hashing with PBKDF2 in Rust using Ring