mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-05 15:26:14 +00:00
* docs: remove connection ID from simplex-messaging.md, #8 * docs: remove alternative flow in simplex-messaging, #20 * docs: update simplex diagrams to remove connection ID * docs: remove connection ID from graph-chat * docs: update duplex connection diagram to remove connection ID, closes #8
11 lines
338 B
Plaintext
11 lines
338 B
Plaintext
sequenceDiagram
|
|
participant B as Bob (sender)
|
|
participant S as server (conn. RU)
|
|
participant A as Alice (recipient)
|
|
|
|
note over B: encrypt message <br> ("public" key EK)
|
|
B ->> S: 1. send message to SU (SK-signed req)
|
|
|
|
S ->> A: 2. retrieve messages from RU (RK-signed req)
|
|
note over A: decrypt message <br> ("private" key EK)
|