Derive cryptographic keys from passwords using PBKDF2 — configurable iterations, salt, and hash algorithm
Yes, PivaBox PBKDF2 Key Derivation is completely free to use. All computation runs locally in your browser using the Web Crypto API.
No. All key derivation happens entirely in your browser using <code>crypto.subtle.deriveBits()</code>. Your password and derived keys never leave your device.
For production use, at least <strong>100,000 iterations</strong> with SHA-256 is recommended by OWASP. Higher values (300,000+) provide better protection against brute-force attacks but increase computation time. The default of 100,000 balances security and usability.