specify selective disclosure and anchor policy
Some checks failed
CI / fmt, clippy, docs (push) Failing after 5s
CI / test (ubuntu-latest) (push) Failing after 5s
CI / iroh integration smoke tests (push) Failing after 5s
CodeQL / Analyze Rust (push) Failing after 4s
Security / RustSec cargo-audit (push) Failing after 5s
CI / test (macos-latest) (push) Has been cancelled
CI / test (windows-latest) (push) Has been cancelled
Some checks failed
CI / fmt, clippy, docs (push) Failing after 5s
CI / test (ubuntu-latest) (push) Failing after 5s
CI / iroh integration smoke tests (push) Failing after 5s
CodeQL / Analyze Rust (push) Failing after 4s
Security / RustSec cargo-audit (push) Failing after 5s
CI / test (macos-latest) (push) Has been cancelled
CI / test (windows-latest) (push) Has been cancelled
This commit is contained in:
parent
492a37c020
commit
76eb785ee2
11 changed files with 834 additions and 387 deletions
20
README.md
20
README.md
|
|
@ -646,9 +646,12 @@ validated its own chain. There is no compatibility mode for that workflow.
|
|||
|
||||
The replacement is the small, transport-neutral
|
||||
[`SSHSIGCHAIN v1`](docs/sshsigchain.md) specification. It starts from an
|
||||
operator-pinned chain ID, OpenSSH root public key, profile, and namespace;
|
||||
records are fixed-byte SSHSIG payloads linked by sequence and digest. Geth
|
||||
already provides a verifier for independently produced JSONL transport files:
|
||||
operator-pinned chain ID, OpenSSH root public key, and namespace. Parent hashes
|
||||
define order without a redundant sequence counter. Every record carries a
|
||||
public authority transition for devices, keys, causal revocation, scoped
|
||||
permissions, and anchor policy, plus optional profile commitments whose payloads
|
||||
can be selectively disclosed. Geth already provides a verifier for independently
|
||||
produced JSONL transport files:
|
||||
|
||||
```sh
|
||||
geth keychain verify-sigchain \
|
||||
|
|
@ -657,10 +660,13 @@ geth keychain verify-sigchain \
|
|||
--root-key ~/.ssh/geth-root.pub
|
||||
```
|
||||
|
||||
SSHSIGCHAIN local record storage, signing, publication, import, and accepted-head
|
||||
persistence remain follow-up work. Until they exist, do not substitute an
|
||||
unpinned checkpoint or a local operation-log view for the SSHSIGCHAIN trust
|
||||
tuple.
|
||||
The verifier reports active authority devices/keys, disclosed and incomplete
|
||||
profiles, the head digest, and current attester/backend anchor thresholds.
|
||||
SSHSIGCHAIN local
|
||||
record storage, signing, publication, import, accepted-head persistence, and
|
||||
concrete anchor adapters remain follow-up work. Until they exist, do not
|
||||
substitute an unpinned checkpoint or a local operation-log view for the
|
||||
SSHSIGCHAIN trust tuple.
|
||||
|
||||
Signing is mediated by OpenSSH. `--signing-key` may point at a private key file,
|
||||
a FIDO/YubiKey OpenSSH security-key stub, or a public key whose private half is
|
||||
|
|
|
|||
Loading…
Reference in a new issue