1// SPDX-License-Identifier: LGPL-3.0-or-later 2 3//! Cryptographic hash fingerprints for [zkboo] circuits. 4 5#![no_std] 6mod backend; 7mod functions; 8 9pub use backend::CircuitHashingBackend; 10pub use functions::hash_circuit;