mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2024-12-17 17:20:21 +01:00
539e09f8cd
* adjust out-of-band message abnf * define hostname and encoded using prose-val * elaborate on base64 * corrections up to SMP procedure * fix CONN -> NEW * update SMP protocol to align with the implementation * remove Possible extensions from TOC * lists * corrections Co-authored-by: Efim Poberezkin <8711996+efim-poberezkin@users.noreply.github.com>
12 lines
232 B
Plaintext
12 lines
232 B
Plaintext
graph LR
|
|
VS{{"verify sender (SK)"}}
|
|
VR{{"verify recipient (RK)"}}
|
|
|
|
S(sender) -->|msg| VS
|
|
subgraph "server (queue RID, SID)"
|
|
VS --> DB[("storage")]
|
|
DB --> VR
|
|
end
|
|
R(recipient) -->|"1) sub"| VR
|
|
VR -->|"2) msg"| R
|