Go to file
unkelpehr 1ec673b249 Added vendor repository castrato 2014-09-25 13:36:12 +02:00
docs Added screenshot 2014-09-19 19:48:43 +02:00
public Added vendor repository castrato 2014-09-25 13:36:12 +02:00
.gitignore Added error handling to the connection 2014-09-21 20:45:20 +02:00
.gitmodules Added vendor repository castrato 2014-09-25 13:36:12 +02:00
LICENSE Initial commit 2014-09-18 09:24:21 +02:00
README.md Update README.md 2014-09-25 13:08:11 +02:00
package.json Update package.json 2014-09-25 13:08:34 +02:00
server.js Notifications and stuff 2014-09-22 22:14:28 +02:00

README.md

cryptalk

Cyptalk is a HTML5/Node.js based 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
  • Optional nicknames
  • Random (UUID v4) channel name generation för less guessability
  • Quick-links (not recommended) using http://server/#Room:Passphrase
  • Super simple setup
  • Notification sounds (mutable)
  • Native popup notifications
  • Configurable page title

Regular setup

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

Create a now folder, browse to it, and install the app from npm

npm install cryptalk

Then, from the same folder, issue the following to start the app

npm start cryptalk

Browse to http://localhost:8080

Done!

If you want to install it globally, you'll have to append -g to both the install line, and the start line.

npm install cryptalk -g
npm start cryptalk -g

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				
                                                                       
Room:                                                    				
 	/generate 						Generate random 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.