Restored Artifacts
// ARCHITECTURAL REVIEWQuMail
Classified Data Logs
CASE_STUDY: QUMAIL_SIGNALING
DATE: 2025-11-12 | AUTHOR: M. GHORUI
Integrating Post-Quantum Cryptography into real-time streams introduced a critical bottleneck: PQC key sizes often exceed standard UDP MTU limits (~1500 bytes). We engineered a fragmented signaling protocol over Firebase to handle these heavy payloads without packet loss. $$ N_{frags} = \lceil \frac{K_{size}}{MTU_{eff}} \rceil $$ This architecture reduced handshake latency by 94% on unstable networks, enabling seamless PQC-secured WebRTC calls.
MEMO: STATE_DEDUCTION
DATE: 2025-08-04 | SYSTEM: COROLLARY
Managing complex theorem dependencies in Corollary demanded a directed acyclic graph (DAG) state structure. Redux was insufficient for the recursive logic depth. We implemented a custom hook-based state engine that traverses the graph only when nodes are "proven" true by the user.