How to Use Ephemeral Private Paste
Sharing confidential credentials, API keys, database connection strings, and private passwords across team communication channels like Slack, Teams, or email poses severe security risks. Chat transcripts are permanently recorded, searchable, and susceptible to data breaches. Ephemeral Private Paste solves this problem through zero-knowledge end-to-end encryption and "Burn After Reading" technology. Using the native Web Crypto API, your secret is encrypted in your browser with AES-256-GCM. The decryption key lives strictly in the URL hash fragment (#key=...), ensuring that our servers only ever receive unreadable ciphertext.
Step-by-Step Instructions
-
1.
Compose Secret Note & Set TTL Expiry: Type or paste the sensitive information you need to transmit. Choose an expiration window (5 minutes, 1 hour, 24 hours, or 7 days).
-
2.
Choose Burn-After-Reading or Zero-Storage Mode: Keep "Burn After Reading" enabled so the secret self-destructs the moment the recipient views it, or choose URL-only mode for zero server footprint.
-
3.
Browser AES-256-GCM In-Memory Encryption: The Web Crypto API generates a cryptographically secure 256-bit AES key and 12-byte initialization vector (IV) to produce authenticated ciphertext.
-
4.
Share Generated Decryption Link: Copy the unique permalink or display the QR code. The decryption key is encoded exclusively after the # hash fragment, isolating it from server logs.
Zero-Knowledge Cryptographic Architecture
Per W3C and IETF RFC 3986 standards, everything following the '#' character in a URL (the URI fragment) is strictly client-side and is NEVER transmitted over the wire in HTTP request headers. Because the decryption key is located solely in the hash fragment, the server hosting the ciphertext cannot decrypt or read your message under any circumstances.
Pro Tips & Best Practices
- Transmit the link over your standard messaging app—even if your chat account is compromised later, the secret will already have burned.
- Use the built-in QR Code generator to quickly transfer 2FA recovery keys or passwords directly from your laptop to your smartphone screen.
- For short tokens under 500 characters, enable "Zero-Storage URL Mode" to bypass server storage completely.