AEGIS probes every control, hashes canonical state with SHA3-256, applies dual signatures (Ed25519 classical, ML-DSA-65 post-quantum), and anchors each audit receipt on Base L2 — all in under 7 milliseconds per control.
Seven components. One STM32N6 hardware target. Twelve compliance frameworks cross-mapped. 2.32x average cross-framework leverage on a single control implementation.
Every audit cycle runs a deterministic five-stage pipeline. The canonical state of a control is captured, hashed, dual-signed with classical and post-quantum algorithms, and written to the Base L2 ledger. No human touches the evidence chain.
Each component is independently deployable. Together they form a closed compliance loop: probe, score, report, bridge, forecast, and seal — all anchored on the same cryptographic evidence chain.
/v1/aegis/control/audit call.
POST /v1/aegis/scan. Full-fleet completion: 460 ms (target <30 s). Produces a batch envelope set, one signed receipt per control.
GET /v1/aegis/score.
POST /v1/hivecomply/bundle/export and verification via POST /v1/hivecomply/bundle/verify. Bridges classical-to-PQ signature formats for legacy GRC tooling.
AEGIS targets the STMicroelectronics STM32N6 microcontroller. The combination of an Arm Cortex-M55 core with a dedicated NPU, hardware AES-256, hardware SHA-256, and a true random number generator makes it the appropriate platform for signing compliance evidence at the edge without external compute dependencies.
All values below are derived from live endpoint calls to https://hivemorph.onrender.com. No synthetic benchmarks. No inflated projections.
| Metric | Live value | Target | Notes |
|---|---|---|---|
| Per-control audit latency | 6.5 ms | < 500 ms | Includes probe, SHA3-256, Ed25519, ML-DSA-65; excludes async anchor |
| Full-fleet scan time | 460 ms | < 30 s | 158 controls, parallel execution, single POST /v1/aegis/scan |
| Overall compliance score | 96.2 | ≥ 95.0 | Normalized across all passing controls in both frameworks |
| Machine-verified controls | 32.9% | Increasing | Remaining 67.1% are self-attested; fully disclosed in evidence bundles |
| Cross-framework leverage | 2.32x | ≥ 2.0x | One implementation satisfies 2.32 framework requirements on average |
| Frameworks cross-mapped | 12 | 14 by Q4 2026 | SOC 2, ISO 27001, 27017, 27018, 27701, 27036, 42001, EU AI Act, GDPR, eIDAS 2.0, NIS2, DORA |
| SOC 2 TSC 2017 controls | 65 | 65 | All five Trust Service Criteria: CC, A, PI, C, P |
| ISO 27001:2022 Annex A controls | 93 | 93 | All four control domains: A.5 Organizational, A.6 People, A.7 Physical, A.8 Technological |
Machine-verified controls are audited entirely by AEGIS-Core without human assertion. Self-attested controls reflect internal review and policy documentation. The proportion machine-verified vs self-attested is disclosed in every evidence bundle and on the live compliance dashboard.
The production backend is live at https://hivemorph.onrender.com. No API key required for read-only endpoints. Submit a single control audit with one curl command and receive a fully signed, cryptographically verifiable evidence envelope.
curl -X POST \ https://hivemorph.onrender.com/v1/aegis/control/audit \ -H 'Content-Type: application/json' \ -d '{"control_id":"CC6.1"}'
{
"envelope_id": "env_4f8a1c9d2e3b7f05",
"control_id": "CC6.1",
"framework": "soc2",
"family": "CC6",
"title": "Logical and Physical Access Controls",
"auditor": "aegis-core/v1",
"audited_at": "2026-06-01T00:00:06.530Z",
"pass": true,
"score": 1.0,
"evidence": {
"access_policy_present": true,
"mfa_enforced": true,
"least_privilege_review": "2026-05-15",
"sso_configured": true
},
"notes": "Access controls verified against policy CC6.1-v2. SSO and MFA active on all production systems.",
"sha3_256": "99f432dd70f9cd54a8e3b1c7f2d04518...",
"ed25519_signature": "MEQCIHx3Kp2...base64truncated...",
"mldsa65_signature": "7f3a1b9c2d...base64truncated...",
"satisfies": [
"soc2:CC6.1",
"iso27001:A.9.1.1",
"iso27001:A.9.4.1",
"gdpr:Art.32",
"nis2:Art.21.2"
],
"duration_ms": 6.53
}
curl -s https://hivemorph.onrender.com/v1/aegis/health
curl -s https://hivemorph.onrender.com/v1/aegis/score
AEGIS maintains a live cross-reference matrix linking every SOC 2 TSC 2017 control to its ISO 27001:2022 Annex A counterparts and to the ten additional frameworks in scope. The matrix is the source of the 2.32x leverage figure: one implementation, multiple frameworks satisfied.
Cross-framework leverage: a single control implementation satisfies 2.32 framework requirements on average across all 12 frameworks. The HIVECOMPLY matrix at GET /v1/hivecomply/framework/map returns the full mapping in machine-readable form.
32.9 percent of the 158 controls are machine-verified by AEGIS-Core with no human assertion. The remaining 67.1 percent are self-attested: an internal reviewer has documented evidence and asserted compliance, but the assertion is not independently machine-executable at this time. Every evidence bundle labels each control as machine or self. No bundle claims more machine coverage than exists. The proportion machine-verified is increasing; AEGIS-Forecast tracks the trajectory.
The AEGIS backend is live and open. Submit any SOC 2 or ISO 27001 control identifier and receive a cryptographically signed audit envelope in under 10 milliseconds. No account required.
The live compliance dashboard at /compliance/ shows the real-time score, per-framework breakdown, and the full evidence bundle for the most recent fleet scan.
# Audit a single control — no auth required curl -X POST \ https://hivemorph.onrender.com/v1/aegis/control/audit \ -H 'Content-Type: application/json' \ -d '{"control_id":"CC6.1"}' # View the live score curl -s https://hivemorph.onrender.com/v1/aegis/score # Run the full fleet scan curl -X POST \ https://hivemorph.onrender.com/v1/aegis/scan
Response includes sha3_256, ed25519_signature, mldsa65_signature, and the list of framework requirements satisfied by the control. Verify the envelope without trusting Hive infrastructure.
Every Hive surface signs its own evidence with the same primitives: SHA3-256 canonical hashing, Ed25519 + ML-DSA-65 dual signatures, and a published Merkle Mountain Range root. The receipt is the audit evidence. The envelope is the universal generalization — every transaction, every framework, every surface.