@forgezero/vault 0.1.25 → 0.1.27
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 +7 -7
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/providers.js +1 -1
- package/dist/schema.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -291,17 +291,17 @@ const signed = await vault.runtime.sign(signer.runtimeKey, transactionDigest);
|
|
|
291
291
|
|
|
292
292
|
## Three paths, and why they stay explicit
|
|
293
293
|
|
|
294
|
-
Platform API logic
|
|
294
|
+
Platform API logic opens its own scoped Vault data directly through an injected internal backend — no HTTP call, API key or local replica. A tenant on managed compute uses the local agent and its memory-only project scope. A tenant elsewhere signs HTTPS with an API-key seed. These share Vault semantics and never silently fall through from a stronger posture to a weaker one.
|
|
295
295
|
|
|
296
296
|
```text
|
|
297
|
-
PLATFORM API resident
|
|
298
|
-
MANAGED TENANT local unix socket
|
|
299
|
-
EXTERNAL TENANT scoped API-key seed
|
|
297
|
+
PLATFORM API resident custody key -> direct scoped envelope
|
|
298
|
+
MANAGED TENANT local unix socket -> agent RAM scope
|
|
299
|
+
EXTERNAL TENANT scoped API-key seed -> signed HTTPS
|
|
300
300
|
```
|
|
301
301
|
|
|
302
302
|
## Current implementation boundary
|
|
303
303
|
|
|
304
|
-
All three trust paths now have code: the platform opens its resident
|
|
304
|
+
All three trust paths now have code: the platform opens its resident custody key directly, an enrolled tenant agent derives its project binding and keeps every environment in that project in RAM, and createVault automatically uses either the local socket or a hybrid signer derived from an API-key seed. Live SEV-SNP report acquisition and an end-to-end production deployment are still gates; installation alone is not presented as proof.
|
|
305
305
|
|
|
306
306
|
## 1. Install
|
|
307
307
|
|
|
@@ -371,9 +371,9 @@ Each names what to do next.
|
|
|
371
371
|
|
|
372
372
|
```text
|
|
373
373
|
NO_CREDENTIAL neither the socket nor FORGEZERO_API_KEY was found
|
|
374
|
-
VAULT_LOCKED the
|
|
374
|
+
VAULT_LOCKED the account Vault is locked; a custodian must unlock it
|
|
375
375
|
MANAGED_ONLY getAll needs the agent socket
|
|
376
|
-
NO_NODE no
|
|
376
|
+
NO_NODE no Vault node is currently available
|
|
377
377
|
```
|
|
378
378
|
|
|
379
379
|
## API keys — the key is a seed, not a password
|
package/dist/index.d.ts
CHANGED
|
@@ -313,4 +313,4 @@ export declare function systemdCredentials(options?: SystemdCredentialOptions):
|
|
|
313
313
|
readonly name: 'systemd';
|
|
314
314
|
get(reference: string, field: string): Promise<string>;
|
|
315
315
|
};
|
|
316
|
-
export declare const VERSION = "0.1.
|
|
316
|
+
export declare const VERSION = "0.1.27";
|
package/dist/index.js
CHANGED
package/dist/providers.js
CHANGED
package/dist/schema.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forgezero/vault",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.27",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@types/bun": "latest"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@forgezero/runtime": "^0.1.
|
|
49
|
+
"@forgezero/runtime": "^0.1.21"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"@noble/ciphers": "^2.2.0",
|