The future of online communications.
Go to file
2013-06-25 17:00:07 -06:00
core Fixed a line in DHT.c and clarified something in DHT_test.c. 2013-06-25 17:50:30 -04:00
docs Fixed one possible bug in the DHT and added a basic TODO list. 2013-06-25 17:16:45 -04:00
testing Fixed a line in DHT.c and clarified something in DHT_test.c. 2013-06-25 17:50:30 -04:00
Tox_GUI Merged "wxWidgets VS template for windows" from juryben 2013-06-24 07:26:30 -04:00
.travis.yml Added support of Travis CI 2013-06-24 20:56:38 -04:00
CMakeLists.txt Added a simple cmake list 2013-06-24 20:55:30 -04:00
README.md Last indents and linkification of IRC links 2013-06-25 17:00:07 -06:00
Tox_GUI.sln Merged "wxWidgets VS template for windows" from juryben 2013-06-24 07:26:30 -04:00
Tox_GUI.v11.suo Merged "wxWidgets VS template for windows" from juryben 2013-06-24 07:26:30 -04:00

Tox

Current IRC: #InsertProjectNameHere on Freenode or webchat

Proposal of a free as in freedom skype replacement:

Basics:

UDP most be used for everything simply because you can't do hole punching with TCP (well you can but it doesn't work all the time)

Every peer is represented as a byte string (the client id) (it is the hash (SHA-256 ?) of the public key of the peer). (if you want to add someone you need that id (either ask that person directly or maybe through some kind of search engine?))

Use something torrent DHT style so that peers can find the ip of the other peers when they have their id.

Once the client has the ip of that peer they start initiating a secure connection with each other.(asymmetric encryption(RSA?) is used to encrypt the session keys for the symmetric(AES?) encryption so that they are exchanged securely) (We can't use public key encryption for everything it's too fucking slow) man in the middle attacks are avoided because the id is the hash of the public key (the client can be sure it's legit.)

When both peers are securely connected with AES they can securely exchange messages, initiate a video chat, send files, etc...

Your client stores the id of the peers along with their public keys used to initiate the connection (this is your contacts list)

Roadmap:

  1. Get our DHT working perfectly.
  2. Connection to other peers according to client id. NOTE: We have not decided on the encryption yet. This was just a quick guess.
  3. Encrypted message sending with RSA
  4. Encrypted message sending with AES (encryption done)
  5. Reliable sending of data larger than the maximum packet size. ...

TODO:

See: docs/TODO.txt

Important-stuff:

Use the same UDP socket for everything

Details:

DHT protocol: see: docs/DHT.txt