Encryption / Hash

PBKDF2 Key Derivation

Derive a fixed-length key from a passphrase and random salt with Web Crypto.

PBKDF2
Derived locally with Web Crypto; the passphrase is never uploaded.
Derived output
Hex
Base64

PBKDF2 Key Derivation

Derive fixed-length key material from a passphrase, salt, iteration count, and hash using the browser Web Crypto API. Inputs are not uploaded.

Security Notes

  • The salt and parameters are required to reproduce a key
  • Use a unique random salt; it is not a password
  • For new password-storage systems, evaluate Argon2id; this output is raw derived key material, not a complete password record