Send anything.
Trust no one.
Encrypted clipboard, file transfer, and pastebin in one app. Encryption happens in your browser before anything leaves your device — the server stores only cipher-text it can never read.
Built on one rule: we shouldn't be able to read your data.
Every file, every clipboard snippet, every share link — encrypted in your browser before upload, decrypted only in someone else's browser when they open the link.
AES-GCM 256 in your browser. Keys derive from your share password via PBKDF2(SHA-256) with 600 000 iterations. No plaintext crosses the wire.No proprietary protocol — just the Web Crypto API.
Three steps. Anyone with the link and the password decrypts; everyone else, including us, sees noise.
You drop a file
Your browser reads the file, derives a key from your password via PBKDF2(SHA-256, 600 000), and encrypts the bytes with AES-GCM 256.
We store cipher-text
Only the encrypted blob and a random IV reach the server. No password, no key. The DB row knows the file's size and TTL — nothing else.
Recipient decrypts
You send the link and password separately. Their browser pulls cipher-text, re-derives the same key, decrypts locally. The server stays blind.
Use whichever screen you have open.
The web app needs nothing but a browser. The Android app adds gallery integration, screenshot detection, and native share intents.
Open in any browser
PWA-installable on desktop and mobile. Single-file architecture — open dev tools and read every line of the code that touches your data.
- BrowsersChrome · Firefox · Safari · Edge
- InstallPWA on desktop & mobile
- InputDrag-drop · paste · file picker
- ExportZIP bundle on multi-file
- CSPLocked: self + jsdelivr only
Native & gallery-aware
Live on Google Play. Share intents from any app, gallery clipData fallback, screenshot detection, direct save to Downloads folder.
- Min APIAndroid 7.0 · API 24
- Arch64-bit ARM · WebView
- ShareIntent.SEND from any app
- WatchScreenshot detection
- SaveDirect to Downloads
Send your first encrypted share now.
No signup. No credit card. No newsletter. Just an encryption flow that runs in your browser and a server holding bytes it can't decode.