semi implemented and features implemented save checkpoint

This commit is contained in:
master
2026-02-08 18:00:49 +02:00
parent 04360dff63
commit 1bf6bbf395
20895 changed files with 716795 additions and 64 deletions

View File

@@ -0,0 +1,27 @@
# Proof of Exposure Export/Verify CLI
## Module
Cli
## Status
IMPLEMENTED
## Description
CLI commands for exporting and verifying Proof of Exposure artifacts for offline verification. Exports include Rekor inclusion proofs, richgraph subgraphs, and SBOM artifacts in tar.gz format. Verification validates bundle integrity independently.
## Implementation Details
- **PoE Export**: `src/Cli/StellaOps.Cli/Commands/PoE/ExportCommand.cs` -- PoE export command
- **PoE Verify**: `src/Cli/StellaOps.Cli/Commands/PoE/VerifyCommand.cs` -- PoE verification command
- **Proof Commands**: `src/Cli/StellaOps.Cli/Commands/Proof/ProofCommandGroup.cs` -- proof operations
- **Commands**:
- `stella poe export <digest> --output <path>` -- export PoE bundle (tar.gz with Rekor proofs, richgraph, SBOM)
- `stella poe verify <bundle>` -- verify PoE bundle integrity offline
## E2E Test Plan
- [ ] Run `stella poe export sha256:abc123 --output ./poe.tar.gz` and verify bundle created
- [ ] Verify bundle contains Rekor inclusion proofs
- [ ] Verify bundle contains richgraph subgraph
- [ ] Verify bundle contains SBOM artifacts
- [ ] Run `stella poe verify ./poe.tar.gz` and verify bundle integrity
- [ ] Verify offline verification without network
- [ ] Verify tampered bundle fails verification