miden-precompiles-prover 0.29.2

Prover-side precompile implementations for the Miden VM deferred framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Hashers and shared hasher infrastructure.
//!
//! Houses the [`memory64`] bus (the shared 64-bit memory namespace
//! hashers read state and input from), the [`chunk`] chiplet (input
//! chunking + Poseidon2 content commitment, shared across hashers),
//! and the [`keccak`] hasher. Future hashers (SHA-2, …) join as
//! siblings of [`keccak`], reusing [`chunk`] and [`memory64`] in
//! their own address sub-namespaces.

pub mod chunk;
pub mod chunk_node;
pub mod keccak;
pub mod memory64;