miden-precompiles-prover 0.33.0

Prover-side precompile implementations for the Miden VM deferred framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Shared low-level primitives.
//!
//! Lookup-backed building blocks used across every category (hashers,
//! transcript eval, ECC): the [`byte_pair_lut`] chiplet (8×8
//! byte-pair bitwise table + `Range16` range checks). `Range16` in
//! particular serves non-bitwise consumers too (e.g. the uint store's
//! 16-bit limb checks); [`byte_pair_lut::require_logic64`] serves any
//! caller that commits 64-bit operands as bytes and needs their logic
//! result range-checked directly, without an intermediate chiplet.

pub mod byte_pair_lut;