Evidence Pack ARCHIVE
The evidence pack enables independent replay verification. An auditor can recompute attestation hashes without running the demo.
Verification Tools
The auditor tool verifies evidence packs in-browser (no server). Example packs include PASS and FAIL cases.
Files
What Replay Verification Proves
- The recorded hashes match what the inputs produce
- The attestation trail has not been tampered with
- Determinism: same inputs produce same outputs
What Replay Verification Does NOT Prove
- That the claims are true
- That the verification was sound
- That the system behaved safely
Replay Instructions
- Download the evidence pack JSON file(s) above
- Clone the repo and checkout
v0.2.7-verifier-parity - Run replay verification:
uv run python -c " from backend.api.uvil import replay_verify import json with open('evidence_pack.json') as f: pack = json.load(f) result = replay_verify(pack) print('PASS' if result['verified'] else 'FAIL') " - PASS = hashes match; FAIL = tampering detected
See How the Demo Explains Itself for full details.