Skip to content

A platform that allows you to chat with someone without any registration. You don't need to identify yourself to the internet and can chat anonymously. The end-users are not traceable and data is not owned by anyone.

License

Notifications You must be signed in to change notification settings

Infinity-Intellect/chat-e2ee

 
 

Repository files navigation

chat-e2ee

Open in Gitpod Deploy

The project is still in development phase.

Working prototype:
https://chat-e2ee.herokuapp.com
https://chate2ee.fun


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 any infromation 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 of your usual chat application.

Features

  1. The end users don't identify themselves .
  2. Data is not stored on any remote server, encrypted data is just relayed to other users, the data can't be decrypted by any 3rd user.
  3. Secure image sharing. Read more
    IMPORTANT: The image sharing feature is imcomplete!! Images are stored to imagebb server. (27/08/2020)
  4. No history i.e. once chat is closed the data is not recoverable.
  5. Zero information sharing -- no login/signup.

Open Source Love GitHub last commit Sonarcloud Status

Contribute:

For installation instruction, go to developer section.

Contributor highlight:


How to initiate chat

  1. Generate unique link.
  2. Share the link with the person you want to chat with.
  3. Once key exchange is complete, start chatting.
  4. The messages are end-to-end encrypted hence, no one can decrypt your message other than you.

How the encryption works

  1. Alice and Bob generate a public and private key pair.
  2. Alice and Bob share their public keys with each other.
  3. Alice encrypts her message with her private key and Bob's public key and sends it to Bob.
  4. Bob receives the encrypted message and decrypts it with his private key and Alice's public key.

In this way, no one else can decrypt the message because your private key is never exposed to the internet. More detailed explanation: https://www.youtube.com/watch?v=GSIDS_lvRv4&t=1s

We are using NaCL & TweetNaCL.js library for asymmetric encryption. The NaCL project is being lead by Daniel J.Bernstein, one of the most prominent Computer Scientists of our era.


Proposed flow

flow


For developers

FE: This project includes a light weight frontend UI - bootstrapped with create-react-app. The FE client is located in ./client folder.
BE: The backend runs on express/nodejs. In production mode, express server exposes the API endpoints and serve the static frontend from ./client/build.

Installation

  1. Fork the repo.
  2. Run npm install in root dir.
  3. Run npm run dev to spin up your client/server. This will run your react app in dev mode and server in watch mode by nodemon.

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.

We also provide a Dockerfile to build and run the docker image. Look at docker directory. Native build of the application is also supported, look at native directory.

Folder structure

  • The FE client is located in ./client which is coupled with the backend
  • All the backend controllers goes to ./backend folder
  • Express instance is on ./app.js
  • Entry point is ./index.js

APIs

endpoint: https://chate2ee.fun/api/<path>

url method payload filename description
/chat-link POST {token} /api/index.js to generate unique link to start chat session
/chat-link/status/:channel GET /api/index.js to check if a channel is valid
/chat/message POST { channel, sender, message } /api/messaging/index.js to send a message to a specific channel
/chat-link/:channel DELETE /api/index.js to delete a channel

Please follow the convention for commit message.
https://github.com/conventional-changelog/commitlint/#what-is-commitlint

Example:
git commit -m"feat: some relevant message"


Contributors ✨


Mukesh

💻

Gagan Aryan

💻

Radha Jayaraman

💻

Jessie

💻

zygisS22

💻

lindsayjohnston

📖

Julien

📖

FabiSdr

📖

AudreyKj

💻

Sundeep Babbur

🚇 💻

imlaxman

💻

Arkadyuti Bandyopadhyay

💻

Nafees Nehar

💻

Tyler Skulley

💻

drmartell

💻

Narasimha Prasanna HN

🚇

Uttkarsh singh

💻

Tat Cheong Chu

💻

Saloni Goyal

💻

Abhishek Agarwal

💻

This project follows the all-contributors specification. Contributions of any kind welcome!


Cryptographic notice
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.

About

A platform that allows you to chat with someone without any registration. You don't need to identify yourself to the internet and can chat anonymously. The end-users are not traceable and data is not owned by anyone.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 79.3%
  • CSS 16.8%
  • HTML 2.6%
  • Other 1.3%