Skip to content
Technology How it works Breeder — Hyperion Burner — Aegis Burner — MetroVolt AI-Native Architecture Magnets Fuel cycle Safety Roadmap
Solutions AI & Data Centers Defense & Government Grid & Baseload Neutron Detection Quantum
Learn Technical Library
Proof Publications Whitepapers Technical Library Open Science & Reproducibility The Honest Gates
Company About / Mission Leadership Environment Health & Safety Investors Careers Press Contact
3D Model
AI Architecture › Security & Zero-Trust
Security & Zero-Trust

Post-Quantum Key Exchange with ML-KEM

Confidential channels use ML-KEM in a hybrid with an elliptic-curve exchange, so a session stays secure unless both the classical and the quantum-safe scheme fail.

STRATEGY / SLOW ▲ ▼ MICROSECOND REAL-TIMEL7Ecosystem & Strategytelemetry ▲ control ▼open ▸L6Experience & Visualizationtelemetry ▲ control ▼open ▸L5Applications & Copilotstelemetry ▲ control ▼open ▸L4Orchestrationtelemetry ▲ control ▼open ▸L3Twin Modeling & AItelemetry ▲ control ▼open ▸L2Data Fabrictelemetry ▲ control ▼open ▸L1Control Planetelemetry ▲ control ▼open ▸L0Foundationtelemetry ▲ control ▼open ▸PHYSICAL S.M.A.R.T. GENERATOR PLANTBREEDER · HYPERION1R0 1.2 m · A 2.5 · 16.84 T · δ −0.30BURNER · TANDEM MIRROR2317 T throat · 26.49 T plug · fₙ 5.44% · DEC1 center stack + plasma · 2 high-field plug · 3 expander → direct converterCOLOR GRAMMAR strategy AI-workflow infra/data models reactor/DECLINE SEMANTICStelemetry (µs)controlKRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORMASTER BLUEPRINTSHEET 01REV. 2026-08L0-L7 · 2 MACHINES
The AI-Native S.M.A.R.T. Generator Master Blueprint — eight layers (L0→L7), one control stack, wired to both machines. Telemetry rises in microseconds; control descends the same path.

Lattice-based key encapsulation

ML-KEM (FIPS 203, from CRYSTALS-Kyber) is a module-lattice key-encapsulation mechanism. One party publishes a public key; the other encapsulates a random shared secret to it and returns a ciphertext; both derive the same symmetric key. Its security rests on the hardness of the module learning-with-errors problem, which no known quantum algorithm breaks efficiently. Kronos uses it to establish the symmetric keys protecting exported telemetry and cross-boundary sessions.

Hybrid, not replacement

During transition Kronos runs a hybrid: the session key is derived from both an X25519 (classical) exchange and an ML-KEM encapsulation. An attacker must break both to recover the key. This guards against an as-yet-undiscovered flaw in the newer lattice scheme while still defeating a future quantum adversary against the classical half.

python
# Hybrid key derivation: classical XOR quantum-safe, both required
def hybrid_session_key(peer):
    ss_classical = x25519(our_eph_priv, peer.x25519_pub)   # ECDH
    ct, ss_pq    = ml_kem_encaps(peer.mlkem_pub)           # FIPS 203
    send(ct)
    # Both secrets feed the KDF; compromise of one is not enough
    return hkdf_sha384(ss_classical + ss_pq, info=b'kronos-ot-v1')

Parameter choice and cost

Design status

Hybrid ML-KEM is implemented in the twin's transport layer and tested for interoperability and performance. Deployment on FOAK OT links and validation of handshake cost on the edge FPGAs is part of the 2027 build; no live reactor uses it yet.

Content reviewed August 2026 · design-and-simulation stage