AES-GCM Encrypt/Decrypt
Encrypt or decrypt text using AES-256-GCM with a password. Key is derived via PBKDF2 (100k iterations). Everything runs in your browser.
Password
Plaintext
Ciphertext (Base64)
---
Format
The output is base64(salt[16] + iv[12] + ciphertext). The salt and IV are randomly generated for each encryption. Key derivation: PBKDF2-SHA256 with 100,000 iterations.
Related tools
Password GeneratorCrypto
Generate strong passwords locally in your browser.
Passphrase GeneratorCrypto
Generate secure passphrases from a word list with entropy calculation, locally in your browser.
Password Strength CheckerCrypto
Estimate password strength locally; no network requests.
Entropy CalculatorCrypto
Calculate password and passphrase entropy in bits with time-to-crack estimates.
Hash GeneratorCrypto
Generate MD5/SHA256/SHA512 hashes in-browser.
HMAC GeneratorCrypto
Generate HMAC (SHA-256/512) using WebCrypto.