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

Secrets and Key Management

Private keys and secrets live in hardware security modules and device key stores, are never exported in the clear, and rotate on short, enforced schedules.

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.

Keys are the root of every guarantee

Identity, attestation, signing, and encryption all reduce to keys. If a private key leaks, the guarantee built on it collapses. Kronos concentrates key material in hardware: a hardware security module (HSM) for the certificate authority and signing roots, and per-device key stores on FPGAs and controllers. Private keys are generated in hardware and never leave it in plaintext; operations happen inside the boundary.

Key hierarchy

python
# Signing happens inside the HSM; the private key never leaves
def sign_root(payload):
    handle = hsm.open('firmware-root', quorum=2)   # 2-person to authorize
    sig = hsm.sign(handle, payload, alg='SLH-DSA')  # key stays in hardware
    hsm.close(handle)
    audit('root-sign', subject=sha384(payload))
    return sig

Rotation and revocation

Short leaf lifetimes make routine rotation automatic - re-attestation issues fresh credentials continuously. Long-term roots rotate on a defined schedule with overlap so verification of existing artifacts is never interrupted, aided by crypto agility. Revocation of a leaf is mostly handled by expiry; roots have an explicit revocation and re-anchoring procedure.

Design status: HSM-backed signing, per-device provisioning logic, and rotation are implemented in the toolchain and twin. Production HSMs and device key injection are part of FOAK manufacturing and build; no live reactor key hierarchy is yet in service.

Content reviewed August 2026 · design-and-simulation stage