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

Zero-Trust Identity and Mutual TLS

Every workload, FPGA node, and service holds a short-lived cryptographic identity and proves it on every connection, so trust follows the credential, not the wire.

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.

Machine identity as the primitive

In a zero-trust plant, the unit of trust is not a network but a verified identity. Each service, controller, and edge FPGA is issued an X.509-style certificate bound to its attested state. Peers authenticate each other with mutual TLS on every connection - there is no anonymous or one-sided handshake anywhere in OT. A stolen IP or a spoofed MAC buys nothing without the private key, and the private key never leaves the hardware that holds it.

Short-lived credentials

Certificates are deliberately short-lived (hours, not years) and issued by an OT-internal certificate authority. Short lifetimes limit the value of a leaked key and force continuous re-attestation: to renew, a node must again prove its firmware measurement matches policy (see remote attestation). Revocation is fast because expiry does most of the work.

python
# Issuance couples identity to attestation state
def issue_cert(node):
    quote = node.get_attestation_quote()          # signed PCR/measurement
    if not verify_measurement(quote, policy.golden(node.role)):
        raise Deny('attestation mismatch')        # unknown firmware -> no cert
    csr = node.make_csr()
    return ca.sign(csr, ttl_hours=8, spiffe_id=node.workload_id)

Binding identity to authorization

Authentication answers who; authorization answers what they may do now. The verified identity is the input to per-request policy in microsegmentation and to role checks in privileged access management. A controller that has proven its identity still cannot, say, command a magnet ramp unless its role and the current plant mode permit it.

Human identity too

Operators authenticate with hardware-backed multi-factor credentials; there are no shared accounts on control systems. Every human action is attributable, which is what makes the decision-audit lineage and the insider-threat model tractable.

Design status: the CA, mTLS mesh, and attestation-coupled issuance are implemented in the twin environment. Hardware key stores on the FOAK FPGAs and the production CA are staged for the Q2 2027 build.

Content reviewed August 2026 · design-and-simulation stage