mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2024-12-17 17:20:21 +01:00
12 lines
227 B
Plaintext
12 lines
227 B
Plaintext
graph LR
|
|
VS{{"verify sender (SK)"}}
|
|
VR{{"verify recipient (RK)"}}
|
|
|
|
S(sender) -->|msg| VS
|
|
subgraph "server (queue RID)"
|
|
VS --> DB[("storage")]
|
|
DB --> VR
|
|
end
|
|
R(recipient) -->|"1) sub"| VR
|
|
VR -->|"2) msg"| R
|