PBKDF2 Key Derivation & Verify

What is PBKDF2?

PBKDF2 stretches weak passwords into strong keys using salt and iterations per RFC 8018.

Key Features

  • Multiple algorithms: PBKDF2-HmacSHA1/224/256/384/512, PBKDF2-HmacSHA3.
  • Flexible input: String, Hex, or Base64 for password and salt with charset encoding.
  • Adjustable parameters: Iterations with OWASP presets, key length 128–512 bits or custom.
  • Generate & verify: Derive keys or verify an existing derived key.
  • Random salt: One-click random salt generation.
  • Local processing.