Files
mlkem-sync/.gitignore
FallenSigh 4d7ce69405 fix(sample_ntt,sha3): FIPS-203 SHAKE-128 squeeze + self-checking sha3 TBs
sample_ntt was non-conformant: both RTL and the test reference re-ran
keccak_p after every 3-byte squeeze instead of consuming the full
1344-bit SHAKE-128 rate. Only coeff[0] matched a standard sampler, so
the generated A matrix would not interoperate with any compliant ML-KEM.

- sample_ntt_sync{,_shared}.v: walk all 56 groups of the rate block via
  grp_ptr_r; re-permute only when the block is exhausted. Verified
  256/256 against ml-kem-r Rust sample_ntt on two seeds, and 1536/1536
  in the Verilator framework (runtime ~128x faster per poly).
- gen_vectors.py: use a self-contained hashlib.shake_128 oracle.

sha3 testbench fixes (all now self-check hash_o against verified vectors,
cross-checked with hashlib and ml-kem-r mlkem_G):
- tb_sha3_xsim_simple.v: test G/H/J modes, not just G.
- tb_keccak_core_xsim.v: correct the wrong EXPECTED_STATE constant
  (RTL was correct; lane0 = 0xf1258f7940e1dde7 per FIPS 202).
- tb_sha3_xsim.v: read expected file and self-check per vector; add
  vectors/g_basic_{input,expected}.hex (3 G / 2 H / 2 J).

Remove stale sha3_chain test (its RTL was deleted in 1cace51) and its
README references. Extend .gitignore for XSIM artifacts and result dumps.
2026-06-27 17:23:28 +08:00

33 lines
451 B
Plaintext

# Verilator build artifacts
obj_dir/
*/obj_dir/
# Python cache
__pycache__/
*.pyc
# Test framework outputs
test_framework/reports/report_*.html
test_framework/modules/*/vectors/*.hex
# XSIM testbench result dumps (regenerated by simulation)
sync_rtl/**/TB/vectors/*_result.hex
# Vivado XSIM simulation artifacts
xsim.dir/
*.jou
*.log
*.pb
*.wdb
*.backup.jou
*.backup.log
.Xil/
webtalk*.jou
webtalk*.log
xelab.pb
xvlog.pb
# OS
.DS_Store
Thumbs.db