Encrypt anything. Share it safely.
Seal a message with a secret key, then hand off the token. Everything runs inside your browser — your text and key never leave standard client environment bounds.
CHANNEL SECURE // ENCRYPT
Prefer to run offline?
Not comfortable running this online? Grab the full open-source code on GitHub to run it locally on your machine.
Encrypted Token
// awaiting input
Cipher
AES-256-GCM
Key Derivation
PBKDF2-SHA256
Iterations
600,000
Runtime Stamp
—
Encryption Architecture
Three Steps // Client execution01
Key stretching
Your secret key is transformed into a 256-bit key via PBKDF2 (600,000 rounds) and a unique random salt to prevent brute-force indexing.
02
Seal message payload
Data is encrypted using AES-256-GCM, stamping an authentication tag so tampering is caught during decryption.
03
Transmit & decrypt
Safely share the output payload. Recipients input the key here to unseal it. Without the key, recovering payload data is impossible.