Disposable chat session: this app will allow two mutually agreed users to have a chat in end-to-end encrypted environment. The app itself doesn't track you or ask for any information from you. Data is owned by only you and only while chatting. Your private key is generated on your device and never leaves your device. This is not a replacement for your usual chat application.
The project is still in development phase and open for contribution.
Demo: https://chat-e2ee-2.azurewebsites.net
- ❎ No login/signup - the end users don't identify themselves.
- 🔐 Audio calls, signaled over an end-to-end encrypted channel (invite-derived AES-GCM key + HKDF-SHA256). Media itself relies on WebRTC's standard mandatory DTLS-SRTP transport encryption — there is no custom per-frame encryption layer or encoded-transform capability gate any more, so calls work in any standards-compliant WebRTC browser.
- 🚫 Data is not stored on any remote server, encrypted data is just relayed to other users, the data can't be decrypted by any man in the middle. No history i.e. once chat is closed the data is not recoverable, however encrypted data can be found on memory trace. Read More
Spin up your own frontend:
JS SDK and use chat-e2ee backend as service - @chate2ee/service
📃 Documentation
This is a client-side SDK to interact with chat-e2ee service. It allows dev to build own chat client on top of chate2ee service. It uses socket.io for websocket connection and webrtc to facilitate 1-1 audio call.
For installation instruction, go to developer section.
- Generate a unique invitation link.
- Share the link with the person you want to chat with.
- Start chatting.
- Messages and WebRTC call signaling are end-to-end encrypted; no one but the two participants can decrypt them.
How the encryption works
- The device creating the room generates a 256-bit secret locally and never sends it anywhere. It is only carried in the invitation link's URL fragment —
#room=<public-room-id>&secret=<secret>— which browsers never transmit as part of an HTTP request. - Both participants derive the same pair of AES-256-GCM keys from that shared secret via HKDF-SHA256: one key for chat messages, one for WebRTC signaling (offer/answer/ICE candidates), so a compromise of one cannot be used to attack the other.
- Every message/signal is sealed into a versioned envelope before it ever reaches the server. The server relays this opaque envelope between the two sockets in the room — it cannot read or modify it, and the receiver rejects outright (no plaintext fallback) anything that doesn't match the expected protocol version or encryption strategy.
In this way, no one else can decrypt anything because the secret is never exposed to, or stored by, the server.
We are using the browser window.crypto library (AES-GCM + HKDF-SHA256) for encryption.
Frontend (UI):
This project includes a light weight frontend UI - bootstrapped with create-react-app. The FE client is located in ./client folder.
Backend:
The backend runs on express/nodejs. In production mode, express server exposes the API endpoints and serves the static frontend from ./client/build.
JS SDK:
@chat-e2ee/service - located in ./service - A SDK that client uses to interact with backend. More info: Readme
Custom frontend
Import @chat-e2ee/service SDK in your client project and build your own chat client.
- Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your account.
- Now clone the forked repository to your machine.
- Run
npm installin root dir i.e. inside cloned repo. - Run
npm run devto spin up your client/server. This will run your react app in dev mode and server in watch mode by nodemon.
❗❗Important:
If you are making changes to ./service i.e. @chat-e2ee/service, make sure you run npm run build-service-sdk to reflect changes.
NOTE: by default, create-react-app runs webpack-dev-server on port 3000. The server is configured to run on 3001 port. So, make sure that these ports are not blocked on your system.
Important:
Check .env.sample to configure your .env file.
Please use node 16 or above.
To start with docker read the instructions.
For native build read the instructions.
- The FE client is located in
./clientwhich is coupled with the backend. - All the backend controllers go to
./backendfolder. - Client uses a package
@chate2ee/serviceto communicate with the backend. Located in./service. - Express instance is on
./app.js. - Entry point is
./index.js.
Please follow the convention for the commit message.
https://github.com/conventional-changelog/commitlint/#what-is-commitlint
Example:
git commit -m"feat: some relevant message"
This distribution includes cryptographic software. The country in which you currently reside may have restrictions on the import, possession, use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check your country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. See http://www.wassenaar.org/ for more information.
The U.S. Government Department of Commerce, Bureau of Industry and Security (BIS) has classified this software as Export Commodity Control Number (ECCN) 5D002.C.1, which includes information security software using or performing cryptographic functions with asymmetric algorithms. The form and manner of this distribution makes it eligible for export under the License Exception ENC Technology Software Unrestricted (TSU) exception (see the BIS Export Administration Regulations, Section 740.13) for both object code and source code.

