Encrypt Text with a Password — AES-256-GCM, In-Browser
Turn any message into a shareable encrypted string and back. AES-256-GCM with PBKDF2 key derivation, performed locally by your browser. No upload, free.
More tools
All free, all private — everything runs in your browser.
Encrypted Notes Vault
Keep private notes encrypted with a master password, stored only on your device. The master password derives an AES-256-GCM key and is never stored. 100% client-side. SealBox Pro.
File Encryptor
Password-protect any file before you email or share it. AES-256-GCM with a PBKDF2-derived key, performed locally by your browser — no upload, no signup. Free.
Bulk File Encryptor
Batch-encrypt many files with a single password into one downloadable .sealbox archive, and restore them all at once. AES-256-GCM per file, performed locally — no upload. SealBox Pro.
AES Encryption Tool
Encrypt or decrypt with your own AES-128/256 key and IV in GCM or CBC mode. A raw, explicit bench for learning and development — runs entirely in your browser.
RSA Keypair Generator
Generate an RSA-OAEP keypair in your browser and export the public and private keys as PEM files. 2048, 3072, or 4096 bits. No upload, no server, free.
PBKDF2 Key Deriver
Derive a cryptographic key from a password with PBKDF2-HMAC-SHA256. Tunable iterations, random or custom salt, hex or base64 output. Runs in your browser.
How to use Text Encryptor
- 1Type or paste the message you want to encrypt.
- 2Enter a strong password — it stays on your device and cannot be recovered if lost.
- 3Click Encrypt to produce a shareable base64 ciphertext string (salt + IV + AES-256-GCM output).
- 4Send the ciphertext through one channel and the password through another (e.g. email the text, phone the password).
- 5To decrypt: paste the ciphertext, enter the same password, and the original message is restored.
Text Encryptor FAQ
- How do I share an encrypted message?
- Encrypt your text with a password, then send the ciphertext string through any channel (email, chat, a note). Share the password through a different channel — for example, send the ciphertext by email and the password by phone or in person. Anyone with both can decrypt it here.
- Is the encrypted text safe to store or paste anywhere?
- Yes — the output is plain base64 text containing a salt, a random IV, and AES-256-GCM ciphertext. It contains no readable part of your message and can be pasted, saved, or printed safely. Only someone with the password (and any copy of this page or the same format) can decrypt it.
- Can the password be recovered?
- No. The key is derived on your device with PBKDF2-SHA256 and never stored or transmitted. If the password is lost, the text is unrecoverable by design — that is what real encryption means.