Files
simplexmq/protocol/diagrams/simplex-messaging/simplex-using.mmd
2021-05-03 10:06:16 +01:00

11 lines
349 B
Plaintext

sequenceDiagram
participant B as Bob (sender)
participant S as server (queue RID)
participant A as Alice (recipient)
note over B: encrypt message<br>("public" key EK)
B ->> S: 1. send message to SID (SK-signed command)
S ->> A: 2. receive messages from RID (RK-signed subscription)
note over A: decrypt message<br>("private" key EK)