Private by design
FFLK Z4 turns any message into unreadable text using real AES-256 encryption, right in your browser. Send it anywhere. Only the person with your password ever sees the words.
The tool
Pick a password only you and your friend know. Everything below runs locally — nothing you type is ever sent to a server.
How it works
There's no sign-up, no server, no history saved anywhere. Just a shared secret between two people.
Pick a phrase with your friend through a separate channel — in person, a call, whatever you trust. This is the only secret that matters.
Type your message and the password here. Your browser scrambles it into unreadable text using AES-256 — nothing leaves your device.
Copy the scrambled text and send it however you like — text, email, Discord. It means nothing without the password.
Your friend pastes it in, enters the same password, and gets your real message back — instantly, in their own browser.
Under the hood
No custom cipher, no security-through-obscurity — just the same standards used by banks and secure messaging apps.
Your password alone isn't a strong key — it's too short and guessable. PBKDF2 stretches it through 150,000 rounds of hashing combined with a random salt, turning a memorable phrase into a proper 256-bit key.
A fresh 16-byte value generated on every encryption. Even the same password produces a completely different key each time, so patterns never repeat.
The actual encryption standard, used globally. GCM mode also adds an authentication tag — if someone tampers with the message, or the password is wrong, decryption fails cleanly instead of returning garbage.
Every operation uses the Web Crypto API, built into your browser. Your message, password, and the decrypted result never touch a server — including ours.
Questions