diff options
author | Jeppler <jeremias.eppler@mailbox.org> | 2015-09-02 00:03:51 +0200 |
---|---|---|
committer | Jeppler <jeremias.eppler@mailbox.org> | 2015-09-02 00:03:51 +0200 |
commit | be1cd7da57f81158030321cf51366178e2e8a1f7 (patch) | |
tree | 437218a8fe646c62c211998aa6222b9182f364e6 | |
parent | 2a49086e8f04843330ab3b791bc59ece850d4024 (diff) |
changed friends list to friend list
-rw-r--r-- | docs/updates/Crypto.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/updates/Crypto.md b/docs/updates/Crypto.md index cdefec30..bfb01034 100644 --- a/docs/updates/Crypto.md +++ b/docs/updates/Crypto.md | |||
@@ -9,10 +9,10 @@ The generated public key is set as the client_id of the peer. | |||
9 | Adding a friend | 9 | Adding a friend |
10 | --------------- | 10 | --------------- |
11 | 11 | ||
12 | Alice adds Bob to her friends list by adding his 32 byte public key (client_id) to her friends list. | 12 | Alice adds Bob to her friend list by adding his 32 byte public key (client_id) to her friend list. |
13 | 2 cases: | 13 | 2 cases: |
14 | case 1: Alice adds the public key of Bob, then Bob waits for Alice to attempt to connect to him. | 14 | case 1: Alice adds the public key of Bob, then Bob waits for Alice to attempt to connect to him. |
15 | case 2: Bob and Alice add their respective public keys to their friends list at the same time. | 15 | case 2: Bob and Alice add their respective public keys to their friend lists at the same time. |
16 | 16 | ||
17 | case 1: | 17 | case 1: |
18 | Alice sends an onion data (see: Prevent_tracking.txt) packet to Bob with the encrypted part containing the friend request like so: | 18 | Alice sends an onion data (see: Prevent_tracking.txt) packet to Bob with the encrypted part containing the friend request like so: |
@@ -27,12 +27,12 @@ For more info on the nospam see: Spam_Prevention.txt | |||
27 | Bob receives the request and decrypts the message using the function crypto_box_open() | 27 | Bob receives the request and decrypts the message using the function crypto_box_open() |
28 | 28 | ||
29 | If the message decrypts successfully: | 29 | If the message decrypts successfully: |
30 | If Alice is already in Bob's friends list: case 2 | 30 | If Alice is already in Bob's friend list: case 2 |
31 | If Alice is not in Bob's friends list and the nospam is good: Bob is prompt to add Alice and is shown the message from her. | 31 | If Alice is not in Bob's friend list and the nospam is good: Bob is prompt to add Alice and is shown the message from her. |
32 | If Bob accepts Alice friend request he adds her public key to his friends list. | 32 | If Bob accepts Alice friend request he adds her public key to his friend list. |
33 | 33 | ||
34 | case 2: | 34 | case 2: |
35 | Bob and Alice both have the others public key in their friends list, they are ready for the next step: Connecting to an already added friend | 35 | Bob and Alice both have the others public key in their friend list, they are ready for the next step: Connecting to an already added friend |
36 | 36 | ||
37 | In the next step only crypto_box() is used for encryption and only crypto_box_open() for decryption (just like in the last step.) | 37 | In the next step only crypto_box() is used for encryption and only crypto_box_open() for decryption (just like in the last step.) |
38 | 38 | ||