├── .gitignore ├── LICENSE.md ├── README.md ├── client.js ├── cryptochat.js ├── encryption.js ├── package.json └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateogianolio/cryptochat/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateogianolio/cryptochat/HEAD/README.md -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateogianolio/cryptochat/HEAD/client.js -------------------------------------------------------------------------------- /cryptochat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateogianolio/cryptochat/HEAD/cryptochat.js -------------------------------------------------------------------------------- /encryption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateogianolio/cryptochat/HEAD/encryption.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateogianolio/cryptochat/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateogianolio/cryptochat/HEAD/server.js --------------------------------------------------------------------------------