The public history carried kat/__pycache__/mlkem768_reference.cpython-314.pyc, a compiled Python artifact embedding the operator's absolute local path. Text secret scanners do not read compiled binaries, which is exactly how it slipped through, and removing it from the tip would have left it reachable through the old root commits. So this repository is republished from a single clean root. This root also carries, from the previously unpublished line of work: - corrected LICENSE year, LICENSING.md, VERIFY-POLICY.md, and CITATIONS-UNRESOLVED.md remeasured 2026-08-11 (101 paths, README aligned) - O-018: run_consensus_verification.py ran 19 of 29 models and reported PASS; it now runs all 29, and computemarket_smt.py gains resolveByTimeout / reclaimUnsettled cases plus a negative control - O-006: the word 'audited' removed from next to Bouncy Castle, twice, after a concurrent edit resurrected it - O-014: prior art named and dated - Algorand's native falcon_verify shipped about ten months before AERE's precompiles; the primacy claim is withdrawn where it was implied - bench/ scripts parametrized so they actually run for an outsider (the earlier textual sanitization left $STAGING unexpanded inside Python strings) - AIP-2/AIP-3 errata with measured figures, spec remeasurements at 2026-08-01, and the spec-zk-stack retractions (owner is an operational key, not the Foundation; 'maximally sound' withdrawn; aggregator V1 deprecated) The redacted bench-host environment files from the sanitized line are kept exactly as published; the unredacted local variants are not carried.
33 lines
1.1 KiB
TOML
33 lines
1.1 KiB
TOML
[package]
|
|
name = "e2e-extractor"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
# Byte-identical pinned deps to the CONFIRMED component extractors (same Cargo.lock, checksum-matched
|
|
# to the repo zk-circuits / rollup-evm-validity locks). This binary emits a COMPLETE p3-uni-stark
|
|
# Proof (commitments + opened_values + the FULL opening_proof: fri_proof + query_openings) as canonical
|
|
# u32 JSON, and asserts the pinned p3-uni-stark VERIFIER accepts, so the assembled Python reference can
|
|
# run the WHOLE BabyBear+FRI verify pipeline end to end against a real proof (accept + reject KAT).
|
|
|
|
[dependencies]
|
|
p3-uni-stark = "=0.4.3-succinct"
|
|
p3-air = "=0.4.3-succinct"
|
|
p3-baby-bear = "=0.4.3-succinct"
|
|
p3-challenger = "=0.4.3-succinct"
|
|
p3-commit = "=0.4.3-succinct"
|
|
p3-dft = "=0.4.3-succinct"
|
|
p3-field = "=0.4.3-succinct"
|
|
p3-fri = "=0.4.3-succinct"
|
|
p3-matrix = "=0.4.3-succinct"
|
|
p3-merkle-tree = "=0.4.3-succinct"
|
|
p3-poseidon2 = "=0.4.3-succinct"
|
|
p3-symmetric = "=0.4.3-succinct"
|
|
p3-util = "=0.4.3-succinct"
|
|
rand = "0.8"
|
|
rand_xoshiro = "0.6"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
[profile.dev]
|
|
opt-level = 0
|