Share information securely with client-side AES encryption.
https://crypt.rmaafs.com
- You write a message and click Share.
- A random 5-character secret is generated locally in your browser.
- The message is encrypted with AES using that secret — before leaving your device.
- Only the encrypted text is sent to the backend. The secret is never sent to the server.
- You get a shareable link containing the
idandsecret. - When someone opens the link, the encrypted text is fetched and decrypted locally in their browser.
Base URL: https://crypt-worker.rmaafs.com
curl -X POST https://crypt-worker.rmaafs.com/ \
-H "Content-Type: application/json" \
-d '{"message": "U2FsdGVkX1+abc123..."}'Response:
{
"id": "23n60"
}curl https://crypt-worker.rmaafs.com/23n60Response:
{
"message": "U2FsdGVkX1+abc123..."
}