From 1f1a8c9943a611735a79b8e647ef60d7b4bf88ed Mon Sep 17 00:00:00 2001 From: jack Date: Sat, 5 Jul 2025 19:52:57 +0200 Subject: [PATCH] Fix sequence diagram bidirectional arrow syntax --- WHITEPAPER.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/WHITEPAPER.md b/WHITEPAPER.md index 06e6b29a..a878ed33 100644 --- a/WHITEPAPER.md +++ b/WHITEPAPER.md @@ -161,8 +161,10 @@ sequenceDiagram C->>B: Scan & Connect (Central) Note over A,C: Communication Phase - A<-->B: Bidirectional Communication - B<-->C: Bidirectional Communication + A->>B: Message + B->>A: Response + B->>C: Message + C->>B: Response Note over A: Acts as both
Central & Peripheral Note over B: Acts as both
Central & Peripheral @@ -325,7 +327,8 @@ sequenceDiagram Alice->>Bob: Key Exchange Response
(Encrypted with shared secret) Note over Bob: Derives shared secret
verifies response - Alice<-->Bob: Encrypted Communication
(AES-256-GCM) + Alice->>Bob: Encrypted Message
(AES-256-GCM) + Bob->>Alice: Encrypted Response
(AES-256-GCM) Note over Alice,Bob: Forward Secrecy Achieved ```