enigma-memory 0.1.11 → 0.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/apps/cli/bin/enigma.mjs +362 -10
- package/deploy/SIMULATION.md +152 -0
- package/deploy/docker-compose.local-production-simulation.yml +237 -0
- package/deploy/docker-compose.production.example.yml +19 -0
- package/deploy/kms-mock.mjs +64 -0
- package/deploy/nginx.local-production-simulation.conf +33 -0
- package/deploy/siem-mock.mjs +50 -0
- package/docs/benchmark-attestation-network.md +488 -0
- package/docs/benchmark-reproducibility.md +19 -2
- package/docs/blockchain-only-mechanisms.md +388 -0
- package/docs/client-connectors.md +512 -0
- package/docs/demo-proof-network.md +275 -0
- package/docs/developer-ecosystem.md +47 -4
- package/docs/developer-proof-quickstart.md +325 -0
- package/docs/enigma-memory-ready-conformance.md +376 -0
- package/docs/enterprise-proof-control-plane.md +365 -0
- package/docs/install-anywhere.md +517 -0
- package/docs/market-category-narrative.md +398 -0
- package/docs/memory-drive-health-model.md +649 -0
- package/docs/memory-drive-strategy.md +458 -0
- package/docs/memory-passport-standard.md +445 -0
- package/docs/novelty-invention-candidates.md +161 -0
- package/docs/privacy-ledger-model.md +229 -0
- package/docs/proof-network-build-notes.md +240 -0
- package/docs/proof-network-claim-boundaries.md +318 -0
- package/docs/proof-network-dashboard-spec.md +773 -0
- package/docs/proof-network-glossary.md +27 -0
- package/docs/proof-network-launch-plan.md +421 -0
- package/docs/proof-network-operator-protocol.md +432 -0
- package/docs/proof-network-roadmap.md +431 -0
- package/docs/proof-network-test-plan.md +216 -0
- package/docs/proof-network-threat-model.md +373 -0
- package/docs/proof-network.md +257 -0
- package/docs/sdk-api.md +132 -10
- package/docs/solana-devnet-acceptance.md +226 -0
- package/docs/solana-proof-rail.md +453 -0
- package/examples/ci/github-actions.yml +6 -3
- package/examples/proof-network-anchor.json +37 -0
- package/examples/proof-network-attestation.json +35 -0
- package/examples/proof-network-grant.json +27 -0
- package/examples/proof-network-packet.json +71 -0
- package/package.json +42 -3
- package/packages/mcp-server/src/index.js +1 -1
- package/packages/proof-network/src/index.js +570 -0
- package/scripts/build-hosted-api-key-lifecycle.mjs +1 -1
- package/scripts/build-hosted-customer-lifecycle.mjs +1 -1
- package/scripts/build-installer-assets.mjs +1 -1
- package/scripts/build-proof-network-packet.mjs +213 -0
- package/scripts/run-standard-memory-benchmarks.mjs +1 -1
- package/scripts/simulate-production-env.mjs +210 -0
- package/scripts/verify-registry-install.mjs +1 -0
- package/scripts/wait-for-backend-ready.mjs +101 -0
- package/specs/goal-completion-audit-v1.schema.json +1 -0
- package/specs/proof-network-anchor-batch-v1.schema.json +125 -0
- package/specs/proof-network-benchmark-attestation-v1.schema.json +103 -0
- package/specs/proof-network-capability-grant-v1.schema.json +132 -0
- package/specs/proof-network-packet-v1.schema.json +171 -0
|
@@ -0,0 +1,365 @@
|
|
|
1
|
+
# Enterprise proof control plane
|
|
2
|
+
|
|
3
|
+
Audience: enterprise security, identity, platform, records, privacy, legal, and procurement teams evaluating Enigma's proof-network control layer for AI memory.
|
|
4
|
+
|
|
5
|
+
Purpose: describe the buyer-facing architecture for governing Enigma-managed AI memory with identity, authorization, data-loss controls, retention, legal hold, evidence export, and offline-verifiable proof artifacts across hosted and customer-controlled deployments.
|
|
6
|
+
|
|
7
|
+
Claim boundary: Enigma proof artifacts can evidence Enigma-mediated policy decisions, capability grants, revocations, benchmark attestations, anchor batches, packet verification results, lifecycle receipts, and audit exports. They do not prove provider deletion, model forgetting, complete imported-source accuracy, absence of all side channels, or independent assurance status.
|
|
8
|
+
|
|
9
|
+
Privacy invariant: raw memory plaintext, prompts, transcripts, completions, embeddings, ACL bodies, tenant names, private keys, API keys, seed phrases, and provider responses must not be written into public proof artifacts, chain payloads, SIEM examples, documentation examples, or tests. Public artifacts use only public-safe hashes, roots, references, counts, timestamps, scopes, key references, and signatures.
|
|
10
|
+
|
|
11
|
+
## Executive architecture
|
|
12
|
+
|
|
13
|
+
Enigma separates the enterprise memory plane into four layers:
|
|
14
|
+
|
|
15
|
+
| Layer | Responsibility | Public-safe evidence |
|
|
16
|
+
| --- | --- | --- |
|
|
17
|
+
| Identity and administration | SSO/SAML, SCIM, admin roles, API-key lifecycle, break-glass, tenant policy change control. | Identity provider reference, role/capability IDs, policy hash, approval reference, audit event hash. |
|
|
18
|
+
| Policy decision plane | RBAC/ABAC, provider/model/region/purpose/sensitivity rules, DLP checks, retention, legal hold, egress gates. | Signed allow/deny/error decision, policy version/hash, rule reference, minimized subject/resource refs. |
|
|
19
|
+
| Proof network plane | Anchor batches, capability grants, revocations/nullifiers, benchmark attestations, proof packets, offline verification. | Schema ID, artifact hash, Merkle/root commitment, Solana-ready opaque anchor payload, signature refs, `transaction_submitted:false`. |
|
|
20
|
+
| Records and evidence plane | SIEM export, eDiscovery handoff, audit packets, policy replay, retention evidence, legal-hold evidence. | Minimized event stream, verifier output, replay transcript hashes, export manifest refs, custody/key refs. |
|
|
21
|
+
|
|
22
|
+
The control plane is not a model provider, not a vector database replacement by itself, and not an external assurance artifact. It is the governance and evidence layer around Enigma-controlled memory operations.
|
|
23
|
+
|
|
24
|
+
## Component catalog
|
|
25
|
+
|
|
26
|
+
| Component | Function | Deployment note | Evidence emitted |
|
|
27
|
+
| --- | --- | --- | --- |
|
|
28
|
+
| Admin boundary | Receives human admin actions through SSO/SAML, identity-aware proxy, and break-glass workflows. | Hosted uses operator-approved identity controls; BYOC/on-prem should integrate with customer identity controls. | Admin action hash, subject ref, role/capability ref, approval ref. |
|
|
29
|
+
| Service-identity boundary | Issues and rotates scoped API keys and workload identities. | Secrets stay in the approved secret manager or KMS-backed vault. | Key hash/ref, scope ref, owner ref, expiry, revocation/nullifier ref. |
|
|
30
|
+
| Policy engine | Evaluates RBAC/ABAC rules for memory operations, provider/tool routing, legal hold, retention, DLP state, and region. | Must fail closed on unknown attributes. | Signed allow/deny/error decision, policy hash, evaluator hash. |
|
|
31
|
+
| DLP/minimization gate | Rejects private fields before proof generation, chain planning, SIEM export, and support artifacts. | Runs before broad distribution of any artifact. | DLP decision ref, classifier hash, rejection reason ref. |
|
|
32
|
+
| Proof artifact service | Creates anchor batches, grants, revocations, attestations, and proof packets from public-safe refs. | Pure local artifact construction; no provider or chain submission implied. | Artifact schema ID, canonical hash, signature refs, verifier status. |
|
|
33
|
+
| Verifier | Checks proof artifacts offline and reports pass/fail/error. | Does not need external network access for supported local artifacts. | Verifier output hash, supported schema list, error refs. |
|
|
34
|
+
| Evidence exporter | Sends minimized security and records events to SIEM/audit destinations. | Content review uses eDiscovery, not the generic event stream. | Event hash, destination ref, delivery status ref, field-minimization proof. |
|
|
35
|
+
| KMS/BYOK integration | Provides key references for encryption, signing, backup, and rotation evidence. | Raw key material never enters proof artifacts or docs examples. | Key ref/version, public-key ref, rotation ref, custody ref. |
|
|
36
|
+
|
|
37
|
+
## Reference control flow
|
|
38
|
+
|
|
39
|
+
1. Admin or service identity authenticates through the approved identity boundary.
|
|
40
|
+
2. The request is normalized into public-safe references: subject, tenant, environment, operation, memory commitment, provider/tool, region, purpose, sensitivity, legal-hold state, and key ref.
|
|
41
|
+
3. The DLP/minimization gate rejects private payload keys or plaintext-looking values before proof artifacts, SIEM events, support exports, or chain-planning payloads are built.
|
|
42
|
+
4. The policy engine evaluates RBAC/ABAC rules under a specific policy hash and returns signed allow/deny/error evidence.
|
|
43
|
+
5. If allowed, the operation proceeds only within the approved hosted, BYOC, or on-prem boundary; provider/tool egress remains separate and policy-gated.
|
|
44
|
+
6. The proof artifact service emits the requested grant, revocation, benchmark attestation, anchor batch, or packet using hashes, refs, counts, roots, and signatures.
|
|
45
|
+
7. The verifier checks supported artifacts offline and records pass/fail/error output.
|
|
46
|
+
8. The evidence exporter sends minimized audit events to SIEM and records repositories.
|
|
47
|
+
9. Policy replay can later re-evaluate the same public-safe input refs against the same policy hash to prove the control-plane decision path.
|
|
48
|
+
|
|
49
|
+
## Deployment modes and responsibility split
|
|
50
|
+
|
|
51
|
+
| Mode | Control owner | Data-plane owner | Key/log/SIEM owner | Buyer expectation |
|
|
52
|
+
| --- | --- | --- | --- | --- |
|
|
53
|
+
| Hosted | Enigma/operator under contract | Enigma/operator environment | Enigma/operator by default unless contract delegates specific controls | Fastest adoption; customer requires contractual review, data-processing terms, incident process, export process, and evidence-retention commitments. |
|
|
54
|
+
| BYOC | Customer security/platform with Enigma deployment guidance | Customer cloud, VPC, cluster, or private network | Customer-controlled KMS/BYOK, logs, SIEM, backups, residency, operator access | Strongest enterprise control without running fully air-gapped; customer accepts infrastructure readiness and owns cloud guardrails. |
|
|
55
|
+
| On-prem / air-gapped | Customer | Customer network/data center | Customer-controlled keys, logs, package distribution, update path, verifier workflow | Requires separate offline operations, update, support, restore, and evidence-transfer procedure before production claims. |
|
|
56
|
+
|
|
57
|
+
Hosted and BYOC share the same proof artifact boundaries. The difference is operational custody: who controls infrastructure, key material, logs, residency, support access, backups, and incident response.
|
|
58
|
+
|
|
59
|
+
## Identity: SSO, SAML, SCIM, and break-glass
|
|
60
|
+
|
|
61
|
+
Enterprise administration should be fronted by the customer's identity provider or the hosted operator's approved identity boundary.
|
|
62
|
+
|
|
63
|
+
Required controls:
|
|
64
|
+
|
|
65
|
+
1. SSO/SAML for human administrators where available.
|
|
66
|
+
2. SCIM provisioning/deprovisioning for admin and service identities where available.
|
|
67
|
+
3. MFA enforced at the identity provider or identity-aware proxy.
|
|
68
|
+
4. Named accounts for privileged users; no shared admin identities.
|
|
69
|
+
5. Break-glass identities with separate approval, short duration, strong logging, and post-use review.
|
|
70
|
+
6. Tenant and environment separation for production, staging, demo, and support workflows.
|
|
71
|
+
7. Admin audit events for login, role change, policy change, API-key action, legal-hold action, export action, replay action, and verifier action.
|
|
72
|
+
|
|
73
|
+
Identity evidence should include identity-provider reference, subject reference, group or role reference, timestamp, action, environment, policy version, and request ID. It must not include passwords, session cookies, SAML assertions, OAuth tokens, raw group membership bodies, or private directory attributes.
|
|
74
|
+
|
|
75
|
+
## API keys and service identities
|
|
76
|
+
|
|
77
|
+
API keys are scoped service credentials, not tenant policy substitutes.
|
|
78
|
+
|
|
79
|
+
| Control | Requirement |
|
|
80
|
+
| --- | --- |
|
|
81
|
+
| Scope | Bind each key to environment, tenant reference, allowed API surfaces, proof artifact types, rate limits, and expiry. |
|
|
82
|
+
| Issuance | Require named owner, approval reference, purpose, rotation date, and custody location. |
|
|
83
|
+
| Storage | Store only key hashes or secret-manager references in Enigma metadata; never place raw key values in proof artifacts, SIEM, docs, or examples. |
|
|
84
|
+
| Rotation | Support planned rotation and emergency revocation. Evidence records key reference/version and revocation/nullifier hash, not key material. |
|
|
85
|
+
| Verification | Verifiers can confirm artifact signatures, scopes, and revocation status from public-safe refs without seeing the raw credential. |
|
|
86
|
+
|
|
87
|
+
Service identities should be least-privilege and purpose-bound. A runner that creates benchmark attestations should not be able to change legal holds. A SIEM exporter should not be able to issue capability grants. A gateway signer should not be able to read raw vault bodies unless explicitly approved through a separate support/legal path.
|
|
88
|
+
|
|
89
|
+
## Authorization: RBAC plus ABAC
|
|
90
|
+
|
|
91
|
+
The control plane should combine RBAC for administrative duties with ABAC for memory operations.
|
|
92
|
+
|
|
93
|
+
### RBAC roles
|
|
94
|
+
|
|
95
|
+
| Role | Typical permissions | Explicit exclusions |
|
|
96
|
+
| --- | --- | --- |
|
|
97
|
+
| Security administrator | Manage policy versions, review deny/error evidence, rotate service credentials, configure SIEM export. | Raw memory review unless separately authorized through eDiscovery/support process. |
|
|
98
|
+
| Records/legal administrator | Apply legal hold, approve eDiscovery export, review retention evidence. | Provider routing, benchmark attestation signing, infrastructure secrets. |
|
|
99
|
+
| Platform operator | Deploy and monitor components, manage backups, observe health. | Policy approval, legal-hold override, raw memory export. |
|
|
100
|
+
| Developer/operator | Create local proof packets, run verification, inspect public-safe artifacts. | Tenant-wide admin changes and production secret access. |
|
|
101
|
+
| Auditor/viewer | Read verifier outputs, audit evidence, policy replay results. | Mutation, key issuance, raw memory access. |
|
|
102
|
+
|
|
103
|
+
### ABAC attributes
|
|
104
|
+
|
|
105
|
+
Policy decisions should evaluate attributes such as:
|
|
106
|
+
|
|
107
|
+
- tenant reference and environment,
|
|
108
|
+
- subject/user/service reference,
|
|
109
|
+
- role and group reference,
|
|
110
|
+
- operation type,
|
|
111
|
+
- memory address/commitment or capsule reference,
|
|
112
|
+
- sensitivity label,
|
|
113
|
+
- purpose label,
|
|
114
|
+
- provider/model/tool label,
|
|
115
|
+
- region and data-residency label,
|
|
116
|
+
- legal-hold state,
|
|
117
|
+
- retention class,
|
|
118
|
+
- DLP classification result,
|
|
119
|
+
- key reference/version,
|
|
120
|
+
- time window and approval reference.
|
|
121
|
+
|
|
122
|
+
Default posture: fail closed on unknown provider, model, tool, region, purpose, sensitivity, tenant, environment, operation, legal-hold state, or key reference.
|
|
123
|
+
|
|
124
|
+
## Capability grants and revocations
|
|
125
|
+
|
|
126
|
+
A capability grant is a public-safe, signed statement that a scoped actor may perform a scoped operation under a policy version. It is not a bearer secret and must not contain raw tenant data.
|
|
127
|
+
|
|
128
|
+
Minimum grant fields:
|
|
129
|
+
|
|
130
|
+
- schema ID: `enigma.proof_network.capability_grant.v1`,
|
|
131
|
+
- issuer reference and signing-key reference,
|
|
132
|
+
- subject reference,
|
|
133
|
+
- capability type,
|
|
134
|
+
- scope references,
|
|
135
|
+
- policy hash/reference,
|
|
136
|
+
- expiry,
|
|
137
|
+
- optional delegation constraints,
|
|
138
|
+
- artifact hash/signature.
|
|
139
|
+
|
|
140
|
+
A revocation is a public-safe statement that invalidates a grant or class of grants through a revocation reference/nullifier.
|
|
141
|
+
|
|
142
|
+
Minimum revocation fields:
|
|
143
|
+
|
|
144
|
+
- schema ID: `enigma.proof_network.capability_revocation.v1`,
|
|
145
|
+
- revoked grant hash/reference or nullifier,
|
|
146
|
+
- reason code reference,
|
|
147
|
+
- issuer reference,
|
|
148
|
+
- timestamp,
|
|
149
|
+
- signature.
|
|
150
|
+
|
|
151
|
+
Revocation evidence should be replayable without exposing the original secret, raw API key, tenant name, memory body, or directory payload.
|
|
152
|
+
|
|
153
|
+
## DLP and plaintext minimization
|
|
154
|
+
|
|
155
|
+
DLP belongs before public proof generation and before broad event export.
|
|
156
|
+
|
|
157
|
+
Required DLP gates:
|
|
158
|
+
|
|
159
|
+
1. Reject proof artifacts containing private payload keys or values.
|
|
160
|
+
2. Reject chain anchor payloads containing raw memory, prompts, transcripts, completions, embeddings, ACL bodies, tenant names, provider responses, private keys, API keys, or seed phrases.
|
|
161
|
+
3. Minimize SIEM fields to identifiers, references, policy hashes, decisions, counts, timestamps, and verification status.
|
|
162
|
+
4. Route any content review to the customer-approved vault/eDiscovery path, not to proof artifacts or generic logs.
|
|
163
|
+
5. Record DLP decision references and classifier version/hash in audit evidence.
|
|
164
|
+
|
|
165
|
+
DLP evidence proves that a configured check ran and what decision it produced. It does not prove that every external system, human note, provider cache, or downstream copy is free of sensitive content.
|
|
166
|
+
|
|
167
|
+
## Retention, deletion, and legal hold
|
|
168
|
+
|
|
169
|
+
Retention policy must cover vault state, lifecycle receipts, proof packets, anchor batches, capability grants, revocations, benchmark attestations, gateway decisions, SIEM exports, eDiscovery exports, backups, and support artifacts.
|
|
170
|
+
|
|
171
|
+
Legal hold has priority over destructive deletion workflows for in-scope Enigma-managed memory records. If a delete/tombstone request targets held records, the expected outcome is a signed deny/error decision with legal-hold evidence and policy reference.
|
|
172
|
+
|
|
173
|
+
Deletion/tombstone receipts can evidence Enigma-mediated changes to active Enigma serving state. They do not prove deletion from model-provider systems, imported source systems, customer backups outside Enigma control, human notes, model weights, or unmanaged exports.
|
|
174
|
+
|
|
175
|
+
## KMS, BYOK, and signing custody
|
|
176
|
+
|
|
177
|
+
The control plane should integrate with customer-approved KMS/BYOK systems in BYOC/on-prem modes and operator-approved KMS/secrets management in hosted mode.
|
|
178
|
+
|
|
179
|
+
Key principles:
|
|
180
|
+
|
|
181
|
+
- Use envelope-encryption metadata and key references; do not export raw keys.
|
|
182
|
+
- Separate signing keys, encryption keys, API keys, backup keys, and break-glass credentials.
|
|
183
|
+
- Record key reference/version in evidence where needed.
|
|
184
|
+
- Rotate keys on approved schedules and after suspected exposure.
|
|
185
|
+
- Preserve historical public-key references needed for artifact verification.
|
|
186
|
+
- Require dual control or named approval for high-impact key operations.
|
|
187
|
+
- Keep seed phrases, private keys, API keys, and decrypted key material out of repositories, examples, SIEM events, and proof artifacts.
|
|
188
|
+
|
|
189
|
+
Solana-ready anchor payloads should be opaque commitments. The local planning command can produce `transaction_submitted:false` and `raw_memory_on_chain:false`; actual transaction submission requires a separate approved production path and must not be implied by the artifact.
|
|
190
|
+
|
|
191
|
+
## SIEM and audit event model
|
|
192
|
+
|
|
193
|
+
SIEM export should be useful for security review while remaining plaintext-minimized.
|
|
194
|
+
|
|
195
|
+
Recommended event fields:
|
|
196
|
+
|
|
197
|
+
| Field | Example shape |
|
|
198
|
+
| --- | --- |
|
|
199
|
+
| `event_type` | `gateway.decision`, `capability.grant`, `capability.revocation`, `anchor.batch`, `benchmark.attestation`, `policy.replay`, `legal_hold.deny` |
|
|
200
|
+
| `schema_id` | Public schema ID for the artifact or event. |
|
|
201
|
+
| `artifact_hash` | SHA-256 hash of canonical public-safe artifact JSON. |
|
|
202
|
+
| `tenant_ref` | Opaque tenant reference or tenant hash, never tenant display name. |
|
|
203
|
+
| `subject_ref` | Opaque user/service reference. |
|
|
204
|
+
| `policy_ref` | Policy version/hash/reference. |
|
|
205
|
+
| `decision` | `allow`, `deny`, `error`, `verified`, `failed`. |
|
|
206
|
+
| `scope_refs` | Opaque resource, region, provider, model, purpose, and sensitivity references. |
|
|
207
|
+
| `key_ref` | KMS/public-key reference/version, never raw key material. |
|
|
208
|
+
| `verification_status` | `pass`, `fail`, `error`, `not_run`. |
|
|
209
|
+
| `transaction_submitted` | `false` for local planning artifacts. |
|
|
210
|
+
| `raw_memory_on_chain` | `false`. |
|
|
211
|
+
|
|
212
|
+
SIEM export should not contain raw memory bodies, prompts, transcripts, completions, embeddings, document bodies, ACL bodies, full directory records, provider responses, secrets, or decrypted capsules.
|
|
213
|
+
|
|
214
|
+
## eDiscovery and records handoff
|
|
215
|
+
|
|
216
|
+
eDiscovery is the controlled path for authorized content review. It is separate from proof artifacts and SIEM.
|
|
217
|
+
|
|
218
|
+
A buyer-ready eDiscovery design should define:
|
|
219
|
+
|
|
220
|
+
1. who may request export,
|
|
221
|
+
2. legal basis or approval reference,
|
|
222
|
+
3. legal-hold interaction,
|
|
223
|
+
4. vault/source scope,
|
|
224
|
+
5. export format and destination,
|
|
225
|
+
6. KMS/BYOK encryption and recipient custody,
|
|
226
|
+
7. audit event fields,
|
|
227
|
+
8. retention and destruction schedule,
|
|
228
|
+
9. verifier output for related proof bundles,
|
|
229
|
+
10. explicit prohibition on placing export bodies in public proof artifacts or chain payloads.
|
|
230
|
+
|
|
231
|
+
Audit evidence may reference an eDiscovery export manifest hash and approval ID. It should not duplicate the exported content into proof-network artifacts.
|
|
232
|
+
|
|
233
|
+
## Policy replay
|
|
234
|
+
|
|
235
|
+
Policy replay lets a buyer answer: "Would this operation be allowed under a given policy version, and what evidence proves the answer?"
|
|
236
|
+
|
|
237
|
+
Replay inputs should be public-safe references:
|
|
238
|
+
|
|
239
|
+
- policy hash/reference,
|
|
240
|
+
- operation type,
|
|
241
|
+
- subject reference,
|
|
242
|
+
- resource/memory commitment,
|
|
243
|
+
- provider/model/tool references,
|
|
244
|
+
- region reference,
|
|
245
|
+
- purpose and sensitivity labels,
|
|
246
|
+
- legal-hold state reference,
|
|
247
|
+
- DLP classifier decision reference,
|
|
248
|
+
- timestamp or policy evaluation time.
|
|
249
|
+
|
|
250
|
+
Replay outputs should include:
|
|
251
|
+
|
|
252
|
+
- allow/deny/error decision,
|
|
253
|
+
- policy rule reference,
|
|
254
|
+
- policy version/hash,
|
|
255
|
+
- evaluator version/hash,
|
|
256
|
+
- input reference hash,
|
|
257
|
+
- timestamp,
|
|
258
|
+
- signer reference/signature,
|
|
259
|
+
- verifier status.
|
|
260
|
+
|
|
261
|
+
Policy replay is evidence about the configured Enigma policy evaluator. It is not a statement that the underlying model provider behaved in a particular way after receiving approved context.
|
|
262
|
+
|
|
263
|
+
## Proof-network artifacts in the control plane
|
|
264
|
+
|
|
265
|
+
| Artifact | Schema | Buyer use | Non-secret contents |
|
|
266
|
+
| --- | --- | --- | --- |
|
|
267
|
+
| Anchor batch | `enigma.proof_network.anchor_batch.v1` | Prepare local, Solana-ready root anchoring without submitting a transaction. | Roots, refs, counts, policy refs, opaque payload, `transaction_submitted:false`, `raw_memory_on_chain:false`. |
|
|
268
|
+
| Capability grant | `enigma.proof_network.capability_grant.v1` | Delegate scoped rights to a subject/service under a policy version. | Subject refs, scopes, expiry, policy hash, issuer/signature refs. |
|
|
269
|
+
| Capability revocation | `enigma.proof_network.capability_revocation.v1` | Invalidate a grant or class of grants. | Grant hash/ref, nullifier, reason code ref, issuer/signature refs. |
|
|
270
|
+
| Benchmark attestation | `enigma.proof_network.benchmark_attestation.v1` | Bind benchmark results to dataset, runner, package, and report hashes. | Dataset ref, runner ref, package ref, report hash, measurement refs, signatures. |
|
|
271
|
+
| Proof packet | `enigma.proof_network.packet.v1` | Bundle public-safe artifacts for offline verification and buyer review. | Artifact hashes, schema IDs, verifier refs, timestamps, signatures, no raw memory. |
|
|
272
|
+
|
|
273
|
+
The packet verifier should validate schema ID, required fields, canonical hashes, signature references where available, privacy guardrails, and supported artifact type. Verification should report pass/fail/error without reaching external networks.
|
|
274
|
+
|
|
275
|
+
## Benchmark attestations
|
|
276
|
+
|
|
277
|
+
Benchmark attestations help buyers distinguish reproducible Enigma-controlled measurements from marketing claims.
|
|
278
|
+
|
|
279
|
+
A buyer-ready attestation should bind:
|
|
280
|
+
|
|
281
|
+
- report hash or public-safe report file hash,
|
|
282
|
+
- dataset reference/hash,
|
|
283
|
+
- runner reference/hash,
|
|
284
|
+
- package reference/hash,
|
|
285
|
+
- environment reference,
|
|
286
|
+
- metric names and public-safe numeric summaries,
|
|
287
|
+
- verifier version/hash,
|
|
288
|
+
- timestamp,
|
|
289
|
+
- signer reference/signature.
|
|
290
|
+
|
|
291
|
+
Do not attest to benchmark leadership, production ROI, external assurance status, or third-party provider behavior unless the exact claim, method, evidence, and review status are separately approved.
|
|
292
|
+
|
|
293
|
+
## Audit evidence package
|
|
294
|
+
|
|
295
|
+
A buyer pilot should produce an evidence package containing:
|
|
296
|
+
|
|
297
|
+
1. deployment mode and responsibility matrix,
|
|
298
|
+
2. identity configuration references for SSO/SAML/SCIM and break-glass,
|
|
299
|
+
3. API-key inventory with key hashes/refs, owners, scopes, and rotation dates,
|
|
300
|
+
4. RBAC/ABAC policy versions and hashes,
|
|
301
|
+
5. DLP minimization decisions and rejected private-payload examples using synthetic safe data,
|
|
302
|
+
6. retention and legal-hold policy evidence,
|
|
303
|
+
7. KMS/BYOK key references and rotation evidence without key material,
|
|
304
|
+
8. SIEM event sample with minimized fields,
|
|
305
|
+
9. eDiscovery export manifest hash and approval reference, if exercised,
|
|
306
|
+
10. policy replay output for allow, deny, error, legal-hold-deny, DLP-deny, and unknown-region-deny cases,
|
|
307
|
+
11. proof-network artifacts and verifier output,
|
|
308
|
+
12. incident/break-glass drill evidence,
|
|
309
|
+
13. unresolved blockers with owners and dates,
|
|
310
|
+
14. explicit non-claims and legal/security review status for external statements.
|
|
311
|
+
|
|
312
|
+
## Buyer evaluation checklist
|
|
313
|
+
|
|
314
|
+
| Question | Expected architecture answer |
|
|
315
|
+
| --- | --- |
|
|
316
|
+
| Can we use our IdP? | Yes, via SSO/SAML where available, with SCIM provisioning where available and named break-glass controls. |
|
|
317
|
+
| Can service credentials be scoped and revoked? | Yes, API keys and service identities are scoped by environment/API/scope/expiry and represented in evidence by hashes/refs only. |
|
|
318
|
+
| Can authorization express business policy? | Yes, RBAC handles duties; ABAC evaluates operation, purpose, sensitivity, provider/model/tool, region, legal hold, retention, and key refs. |
|
|
319
|
+
| Can we prevent memory from entering public artifacts? | The proof generator and DLP gate must reject private keys/values and only emit hashes, roots, refs, counts, and signatures. |
|
|
320
|
+
| Can we prove what policy would have done? | Policy replay produces signed allow/deny/error evidence for a policy hash and public-safe input refs. |
|
|
321
|
+
| Can legal hold override deletion? | Yes, held records should produce signed deny/error evidence for destructive workflows. |
|
|
322
|
+
| Can our KMS/BYOK be referenced? | Yes, evidence records key refs/versions and signer refs without raw key material. |
|
|
323
|
+
| Can SIEM receive useful events? | Yes, minimized events carry schema IDs, artifact hashes, decisions, policy refs, key refs, and verifier status. |
|
|
324
|
+
| Can eDiscovery access content when authorized? | Yes, through a separate approved vault/eDiscovery workflow; proof artifacts reference manifest hashes instead of carrying content. |
|
|
325
|
+
| Does this submit to Solana? | Local planning artifacts do not submit transactions and explicitly set `transaction_submitted:false`. |
|
|
326
|
+
| Is raw memory on-chain? | No; anchor artifacts must set `raw_memory_on_chain:false` and carry only opaque commitments. |
|
|
327
|
+
| Is this an external assurance artifact? | No. External assurance statements require separate legal/security review, contracts, audit scope, and evidence. |
|
|
328
|
+
|
|
329
|
+
## Non-claims and required wording discipline
|
|
330
|
+
|
|
331
|
+
Approved posture:
|
|
332
|
+
|
|
333
|
+
- "Enigma can produce public-safe proof artifacts for Enigma-mediated memory policy decisions."
|
|
334
|
+
- "Enigma can prepare opaque anchor batches suitable for a Solana anchoring workflow without placing raw memory on-chain."
|
|
335
|
+
- "Enigma can export minimized SIEM and audit evidence for customer review."
|
|
336
|
+
- "In BYOC/on-prem deployments, customers can retain control of infrastructure, logs, KMS/BYOK, backups, residency, and operator access."
|
|
337
|
+
|
|
338
|
+
Do not claim without separate approved evidence:
|
|
339
|
+
|
|
340
|
+
- security, privacy, or industry assurance status,
|
|
341
|
+
- provider deletion or provider memory erasure,
|
|
342
|
+
- model forgetting or model-weight modification,
|
|
343
|
+
- complete absence of side channels,
|
|
344
|
+
- benchmark leadership or ROI guarantees,
|
|
345
|
+
- production hosted availability before acceptance evidence exists,
|
|
346
|
+
- transaction submission or on-chain finality from a local planning artifact.
|
|
347
|
+
|
|
348
|
+
## Reference pilot flow
|
|
349
|
+
|
|
350
|
+
1. Choose deployment mode and responsibility split.
|
|
351
|
+
2. Connect SSO/SAML and SCIM or document approved identity substitute.
|
|
352
|
+
3. Define RBAC roles and ABAC policy attributes.
|
|
353
|
+
4. Configure API-key scopes, owners, expiry, and rotation.
|
|
354
|
+
5. Configure DLP/private-payload rejection before proof generation and SIEM export.
|
|
355
|
+
6. Define retention, legal hold, eDiscovery, and evidence-retention rules.
|
|
356
|
+
7. Bind KMS/BYOK references for encryption/signing/backup where applicable.
|
|
357
|
+
8. Generate capability grant and revocation artifacts using public-safe refs.
|
|
358
|
+
9. Generate anchor batch artifacts with `transaction_submitted:false` and `raw_memory_on_chain:false`.
|
|
359
|
+
10. Generate benchmark attestation from report/dataset/runner/package refs, not raw report secrets.
|
|
360
|
+
11. Bundle artifacts into a proof packet and verify offline.
|
|
361
|
+
12. Export minimized SIEM events and audit evidence.
|
|
362
|
+
13. Replay policies for allow, deny, legal-hold-deny, DLP-deny, and unknown-attribute-deny cases.
|
|
363
|
+
14. Review non-claims and blockers before buyer-facing statements.
|
|
364
|
+
|
|
365
|
+
The result is a control-plane story an enterprise buyer can evaluate: identity-governed administration, scoped capabilities, privacy-preserving proof artifacts, local/offline verification, chain-ready commitments without transaction submission, and audit evidence that remains useful without leaking memory content.
|