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.
63 lines
1.3 KiB
Plaintext
63 lines
1.3 KiB
Plaintext
# aere-research .gitignore
|
|
#
|
|
# This repository is PUBLIC and holds no keys, no node data and no
|
|
# infrastructure detail by design. These rules exist so that an accidental
|
|
# `git add -A` cannot quietly change that.
|
|
#
|
|
# Added 2026-07-20. Note what prompted it: this repository had no .gitignore at
|
|
# all, and had already committed kat/__pycache__/mlkem768_reference.cpython-314.pyc,
|
|
# a compiled artifact embedding an absolute Windows build path containing the
|
|
# operator's account name. The text-based secret scanner passed because scanners
|
|
# read text and skip compiled binaries. Nothing in the rules covered a .pyc.
|
|
|
|
# ---- Secret-bearing file types. Never commit any of these. ----
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
*.keystore
|
|
id_rsa*
|
|
id_ed25519*
|
|
*.mnemonic
|
|
secrets.json
|
|
nodekey
|
|
nodekey.pub
|
|
|
|
# ---- Compiled Python. The finding above. ----
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# ---- Python environments and tooling ----
|
|
.venv/
|
|
venv/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
*.egg-info/
|
|
|
|
# ---- JVM build output (the precompile and KAT sources are Java) ----
|
|
target/
|
|
build/
|
|
out/
|
|
*.class
|
|
*.jar
|
|
|
|
# ---- Node ----
|
|
node_modules/
|
|
|
|
# ---- Chain / bench runtime data. Never publish node state or a live genesis. ----
|
|
besu-data/
|
|
data/
|
|
logs/
|
|
*.log
|
|
|
|
# ---- Editor / OS noise ----
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea/
|
|
.vscode/
|