From 4725b3c88101c7c2c80bed202c0ad5b44cf40ac7 Mon Sep 17 00:00:00 2001 From: jack Date: Sat, 5 Jul 2025 19:48:28 +0200 Subject: [PATCH] Fix Mermaid diagram syntax errors in WHITEPAPER.md --- WHITEPAPER.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/WHITEPAPER.md b/WHITEPAPER.md index 39b91b24..06e6b29a 100644 --- a/WHITEPAPER.md +++ b/WHITEPAPER.md @@ -161,8 +161,8 @@ sequenceDiagram C->>B: Scan & Connect (Central) Note over A,C: Communication Phase - A<<->>B: Bidirectional Communication - B<<->>C: Bidirectional Communication + A<-->B: Bidirectional Communication + B<-->C: Bidirectional Communication Note over A: Acts as both
Central & Peripheral Note over B: Acts as both
Central & Peripheral @@ -325,7 +325,7 @@ 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 Communication
(AES-256-GCM) Note over Alice,Bob: Forward Secrecy Achieved ``` @@ -348,10 +348,10 @@ graph LR A --> K[256-bit Key] K --> AES[AES-256-GCM] - S["Salt: SHA256(roomName)"] --> A - I["Iterations: 10"] --> A - M["Memory: 64MB"] --> A - T["Parallelism: 4"] --> A + S[Salt - SHA256 of roomName] --> A + I[Iterations - 10] --> A + M[Memory - 64MB] --> A + T[Parallelism - 4] --> A style P fill:#ffccbc style A fill:#b3e5fc