Files
simplex-chat/diagrams/simplex-messaging/simplex-using.mmd
Evgeny Poberezkin 3e07161121 Remove connection ID and alternative flow (#22)
* 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
2020-01-26 21:34:14 +00:00

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)