Go to file
Hexagon 9e985b05f0 Ooops 2017-01-23 23:43:22 +01:00
docs Added screenshot 2014-09-19 19:48:43 +02:00
public Documentation. Changed key.maxLen from Infinity to 1024 bytes 2016-01-05 00:08:15 +01:00
.dockerignore Ignored too much. Release 1.1.12 2017-01-17 22:35:30 +01:00
.gitignore Adhering to change in socket.io, Release 1.1.16 2017-01-23 22:29:23 +01:00
.npmignore Updating ignorefiles. Documentation. Release 1.1.11. 2017-01-17 22:30:16 +01:00
.travis.yml Fixes 2015-12-30 00:38:05 +01:00
Dockerfile Minimizing Dockerfile 2017-01-17 22:53:57 +01:00
LICENSE Initial commit 2014-09-18 09:24:21 +02:00
README.md Updating ignorefiles. Documentation. Release 1.1.11. 2017-01-17 22:30:16 +01:00
app.json Various 2016-01-04 01:34:16 +01:00
docker-entrypoint.sh Minimizing Dockerfile 2017-01-17 22:53:57 +01:00
package.json Ooops 2017-01-23 23:43:22 +01:00
server.js static was used as variable name, not ok. Release 1.1.17 2017-01-23 23:42:03 +01:00

README.md

cryptalk

Build npm version License Codacy Badge

Cyptalk is a HTML5/Node.js based, client side (E2EE) encrypted instant chat

Features

  • Client side AES-256-CBC encryption/decryption (the server is just a messenger)
  • 256 bit key derived from your passphrase using PBKDF2
  • Messages torched after a configurable delay, default is 600s.
  • Simple setup using npm, Docker or Heroku
  • Notification sounds (mutable)
  • Native popup notifications
  • Configurable page title
  • Nicknames, optional.
  • Quick-links using http://server/#Room:Passphrase, optional and insecure

Docker setup

To run latest cryptalk with docker, exposed on host port 80, simply run the following command to pull it from docker hub

sudo docker run -d --restart=always -p 80:8080 hexagon/cryptalk

Heroku setup

Click the button below

Deploy

Docker setup without using docker hub

Clone this repo, enter the new directory.

Build image

docker build . --tag="hexagon/cryptalk"

Run container, enable start on boot, expose to port 80 at host

sudo docker run -d --restart=always -p 80:8080 hexagon/cryptalk

Browse to http://<ip-of-server>/

Done!

npm setup

Install node.js, exact procedure is dependant on platform and distribution.

Install the app from npm

npm install cryptalk -g

Then issue the following to start the app

cryptalk

Browse to http://localhost:8080

Done!

Developer setup

Install node.js, exact procedure is dependant on platform and distribution.

Clone this repo

git clone https://github.com/Hexagon/cryptalk.git
cd cryptalk

Pull dependencies from npm

npm install

Start server

node server.js

Browse to http://localhost:8080

Usage


Available commands:

Client:                                                    			
	/key		StrongPassphrase	Sets encryption key                 
	/nick		NickName			Sets an optional nick                   
	/mute  							Audio on									
	/unmute  						Audio off									
	/clear							Clear on-screen buffer                      
	/help							This                                        
	/title							Set your local page title					
	/torch		AfterSeconds		Console messages are torched  		
									after this amount of seconds 					
									(default 600).									

Room:                                                    				
	/join		RoomId				Join a room	                            
	/leave							Leave the room                              
	/count							Count participants                          

Host:  		                                                    	
	/hosts							List available hosts                   		
	/connect	HostIndex			Connect to selected host               	
	/disconnect						Disconnect from host    			        

You can select any of the five last commands/messages with up/down key.

Due to security reasons, /key command is not saved, and command         
history is  automatically cleared after one minute of inactivity.       

It is highly recommended to use incognito mode while chatting, 
to prevent browsers from keeping history or cache.