Terminology Index
Glossary
1801 terms
Showing 1121-1152 of 1801 terms
PBKDF2
Password-Based Key Derivation Function 2: a widely used function that derives a cryptographic key (or password hash) from a password by applying a hash many times with a salt, deliberately slow to resist brute-forcing.
PBKDF2 turns a password into a key or storable hash by repeatedly applying a hash function (with a salt and a configurable iteration count) to make computation deliberately expensive. The high iteration count slows brute-force attacks on stolen hashes. It is a long-standing, standardized password-based key derivation and hashing function, though newer functions like Argon2 and scrypt offer stronger resistance to specialized hardware. PBKDF2 remains a common, acceptable choice for protecting passwords.
Introduced in: Cryptography Essentials
Examples
- Hashing a password with PBKDF2 using a salt and many iterations.
- Tuning PBKDF2's iteration count to slow brute-force attacks.
- Deriving an encryption key from a password via PBKDF2.
No related terms linked yet.
