Commit cb519e1
feat(pip-003): Ed25519 checkpoint signing + trust layer architecture
Every Merkle checkpoint is now signed with a locally generated Ed25519
keypair. Signature embedded as C2SP extension line:
sig/ed25519:<pubkey_hex>:<sig_hex>
Trust layers (each strictly additive):
- Merkle: ordering + integrity (RFC 6962)
- Ed25519: identity binding (this commit)
- TSA: time binding (via punkgo-jack, not in kernel)
Changes:
- Add signing.rs: Ed25519 key lifecycle + checkpoint signing (7 tests)
- Integrate signing into audit.rs checkpoint creation
- Add signing_pubkey IPC read kind
- Add audit_tsa_tokens table (forward-compatible, jack-side storage)
- Add trust-layers.svg visual
- Add PIP-003 spec (EN + ZH)
- Rewrite README as landing page (190 → 86 lines)
- Update ARCHITECTURE.md to v0.5.0
- Remove orphaned crates/punkgo-sandbox/
- Bump workspace version 0.4.0 → 0.5.0
138 tests, cargo fmt + clippy clean.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>1 parent 37d2b25 commit cb519e1
File tree
21 files changed
+661
-1226
lines changed- assets
- crates
- punkgo-kernel
- src
- runtime
- state
- punkgo-sandbox
- src
- docs
21 files changed
+661
-1226
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
8 | 22 | | |
9 | 23 | | |
10 | 24 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
0 commit comments