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
```