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 Signatures: ML-DSA and SLH-DSA

Firmware, bitstreams, and audit anchors are signed with quantum-resistant schemes so their authenticity survives long past the machine's commissioning.

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.

Two families for two risk appetites

Signatures must remain verifiable for the whole life of a signed artifact. A bitstream signed in 2030 must still be trustworthy in 2050. Kronos uses two post-quantum signature families. ML-DSA (FIPS 204, from CRYSTALS-Dilithium) is a lattice scheme with small signatures and fast verification, used for high-frequency signing such as the decision lineage and short-lived identities. SLH-DSA (FIPS 205, stateless hash-based) is slower with larger signatures but rests only on hash-function security, so it anchors the most conservative long-term roots.

Where each is used

Signature scheme by use (rows=use, cols=ML-DSA/SLH-DSA), 1=chosen
10011001

Rows above: per-decision lineage signing, firmware root of trust, short-lived node identity, and audit-log anchoring. The high-frequency, low-latency uses take ML-DSA; the long-lived, break-glass roots take hash-based SLH-DSA to hedge against a future lattice weakness.

python
# Verify a firmware image against a hash-based long-term root
def verify_firmware(img):
    if not slh_dsa_verify(img.bytes, img.sig, root_pub):  # FIPS 205
        halt('firmware signature invalid')                 # fail closed
    if img.version < policy.min_version:
        halt('rollback blocked')
    return True

Cost trade-off on the edge

Design status: both signature families are integrated into the twin's signing/verification paths. On-device verification budgets for FOAK FPGAs are under measurement; no production reactor yet verifies these signatures on live boots.

Content reviewed August 2026 · design-and-simulation stage