summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 92f42439..be92b0aa 100644
--- a/README.md
+++ b/README.md
@@ -18,17 +18,17 @@ Use something torrent DHT style so that peers can find the ip of the other peers
18Once 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) 18Once 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)
19(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.) 19(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.)
20 20
21When both peers are securely connected with AES they can securely exchange messages, initiate a video chat, send files, etc... 21When both peers are securely connected with the encryption(AES?) they can securely exchange messages, initiate a video chat, send files, etc...
22 22
23Your client stores the id of the peers along with their public keys used to initiate the connection (this is your contacts list) 23Your client stores the id of the peers along with their public keys used to initiate the connection (this is your contacts list)
24 24
25## Roadmap: 25## Roadmap:
26 26
271. Get our DHT working perfectly.(Done, needs large scale testing though.) 271. Get our DHT working perfectly.(Done, needs large scale testing though.)
282. Connection to other peers according to client id. 282. Reliable connection (See Lossless_UDP protocol) to other peers according to client id.
293. Encrypted message sending with RSA (NOTE: We have not decided on the encryption yet. This was just a quick guess.) 293. Encrypted message sending with RSA (NOTE: We have not decided on the encryption yet. This was just a quick guess.)
304. Encrypted message sending with AES (encryption done) 304. Encrypted message sending with AES (encryption done)
315. Reliable sending of data larger than the maximum packet size. 315. Reliable encrypted sending of data larger than the maximum packet size.
32... 32...
33 33
34## TODO: 34## TODO: