[ ENCRYPTION ]
RSA-2048 encryption, end to end.
Every message you send is encrypted on your device using RSA-2048 before it ever leaves. The server processes your request in memory, responds, and discards everything. No one — not even us — can read your messages in transit.
HOW IT WORKS
Encrypted before it leaves your phone
Every message is encrypted on your device using RSA-2048 public-key cryptography before it touches the network. The server decrypts, processes your request, and immediately discards the plaintext. Your message is never readable in transit.
REQUEST SHUFFLING
Requests are randomized to prevent pattern analysis
Message order and timing are shuffled before transmission to prevent traffic analysis. Even if someone intercepts your encrypted data, they cannot infer conversation patterns, message frequency, or usage behavior from the request stream.
STATELESS SERVER
Process, respond, forget
The server holds nothing between requests. There is no database, no log file, no message queue, and no conversation history. Once your encrypted message is processed and the response is sent, the data no longer exists anywhere on the server.
DEFENSE IN DEPTH
Multiple layers, not a single lock
Encryption is just one layer. Requests are authenticated, rate-limited, and isolated. The server cannot be queried for past conversations because past conversations do not exist. Privacy is enforced by architecture, not policy.