Externally verifiable cryptographic integrity + reproducible test run artefacts. RFC 8785 canonical JSON, publicly sourced authority data (OFAC SDN).
Portability Pack (ECDSA P-256) — For maximum tooling compatibility. PQC pack (ML-DSA-65 / FIPS 204) available under NDA.
Evidence Pack ID: cc158ae1-b505-4ae3-b5a6-d10bfa0ca114
| Pack Hash (SHA-256) | b87554396e3813391acbbcca82d083a164ca3b61734027e56a42b582d14b923a |
| Signing Algorithm | ECDSA P-256 (portability); ML-DSA-65 pack under NDA |
| Canonicalisation | RFC 8785 JCS |
| Signed At | 2025-12-24T09:45:14Z |
| Release Version | sdk-23.0.0 |
Status: PASS_WITH_WARNINGS — 12/12 checks passed, 0 errors, 2 warnings
Complete directory layout with file roles and integrity hashes.
gold_evidence_pack/ ├── MANIFEST.canonical.json # RFC 8785 JCS canonical manifest ├── MANIFEST.sha256 # SHA256 hash of manifest ├── ATTESTATION.json # Cryptographic attestation ├── ATTESTATION.sha256 # SHA256 hash of attestation ├── ATTESTATION.sig # ECDSA P-256 signature ├── AUTHORITY_SNAPSHOTS/ │ └── ofac_sdn/ # OFAC SDN authority snapshot │ ├── raw_download.bin # Original OFAC download │ ├── normalised_snapshot.json │ ├── provenance.json # Download metadata │ └── *.sha256 # Hash files ├── DATASET/ │ ├── eval_dataset.jsonl # Evaluation dataset (real data) │ ├── labels.jsonl # Ground truth labels │ └── LICENCE.txt ├── CONFIG/ │ ├── determinism_config.json # Deterministic run config │ └── threshold_config.json # Matching thresholds ├── OUTPUT/ │ ├── decisions.jsonl # Evaluation decisions │ └── metrics.json # Computed metrics ├── RUN/ │ └── runtime_env_fingerprint.json ├── KEYS/ │ ├── signing_public_key.pem # ECDSA P-256 public key │ └── key_fingerprint.txt ├── VERIFY/ │ ├── verify.py # Verification tool │ └── CONTRACT/ # Verifier contract files ├── UAT_REPORT.json # UAT execution report └── VERIFY_REPORT.json # Verification report
Verify the pack independently — no QuantumVerify infrastructure required.
# Request the Evidence Pack under NDA: # https://www.quantumverify.io/request-diligence-pack.html # After NDA execution, download and unzip: unzip QV_GOLD_EVIDENCEPACK_sdk-23.0.0_cc158ae1.zip
# Verify manifest hash sha256sum -c MANIFEST.sha256 # Expected output: # MANIFEST.canonical.json: OK
# Verify pack signature using OpenSSL
openssl dgst -sha256 -verify KEYS/signing_public_key.pem \
-signature ATTESTATION.sig ATTESTATION.sha256
# Expected output:
# Verified OK
# Run the included verification tool (tested: Ubuntu 22.04+, Python 3.11+, OpenSSL 3.x) python VERIFY/verify.py . # Expected output: # ✔ All 12 checks passed # Status: PASS_WITH_WARNINGS
# Compare authority snapshot hash to independently downloaded OFAC SDN curl https://www.treasury.gov/ofac/downloads/sdn.csv | sha256sum # Compare output to: AUTHORITY_SNAPSHOTS/ofac_sdn/raw_download.sha256
All core UAT tests pass, demonstrating pack integrity and verification capability.
| Test ID | Description | Status |
|---|---|---|
| UAT-001 | Pack Integrity Verification | ✅ PASS |
| UAT-002 | Offline Verification Mode | ✅ PASS |
| UAT-003 | Tamper Detection | ✅ PASS |
| UAT-004 | Metrics Recomputation | ✅ PASS |
| UAT-005 | Authority Snapshot Validation | ✅ PASS |
| UAT-006 | Determinism Verification | ✅ PASS |
Stable verification contract with fixed checks and error codes.
Checks in fixed order
Error codes with frozen meanings
sysexits-compliant exit codes
| Code | Meaning |
|---|---|
| 0 | PASS / PASS_WITH_WARNINGS |
| 1 | Verification FAIL |
| 64 | Usage error (EX_USAGE) |
| 65 | Data/format error (EX_DATAERR) |
| 66 | Missing input (EX_NOINPUT) |
| 70 | Software error (EX_SOFTWARE) |
| 71 | OS/runtime error (EX_OSERR) |
Get the complete evidence pack with all verification tools and documentation.
Request Evidence Pack (NDA) → Trust Centre →