Security & Crypto Tools
AES Encrypt / Decrypt
Encrypt and decrypt text with AES-256-GCM using a passphrase.
Loading tool…
What is AES?
A passphrase-based AES tool: PBKDF2 stretches the passphrase into a 256-bit key, GCM authenticates the ciphertext, and an IV ensures unique output.
How it works
Web Crypto derives the key with 100k PBKDF2 iterations and encrypts with AES-GCM; decryption takes the hex ciphertext + IV and your passphrase.
- Enter your input. Type or paste your input into the field above — the tool responds instantly.
- Review the result. Output updates live as you type. Everything runs entirely in your browser.
- Copy or download. Use the Copy button to grab the result, or Download to save it as a file.
Examples
Realistic sample
Paste or type any realistic input — the tool computes the result locally and instantly.
Common mistakes
Expecting a server round-trip
Nothing is uploaded — every tool in this category runs entirely in your browser.
Frequently asked questions
Why does the same input produce different output each time?
GCM uses a fresh random IV per encryption — identical plaintext yields different ciphertext, which is what makes it secure. Keep the IV with the ciphertext to decrypt.