snarkvm_circuit_algorithms/bhp/
commit_uncompressed.rs1use super::*;
17
18impl<E: Environment, const NUM_WINDOWS: u8, const WINDOW_SIZE: u8> CommitUncompressed
19    for BHP<E, NUM_WINDOWS, WINDOW_SIZE>
20{
21    type Input = Boolean<E>;
22    type Output = Group<E>;
23    type Randomizer = Scalar<E>;
24
25    fn commit_uncompressed(&self, input: &[Self::Input], randomizer: &Self::Randomizer) -> Self::Output {
27        let hash = self.hash_uncompressed(input);
28
29        randomizer
31            .to_bits_le()
32            .iter()
33            .zip_eq(self.hasher.random_base())
34            .map(|(bit, power)| Group::ternary(bit, power, &Group::zero()))
35            .fold(hash, |acc, x| acc + x)
36    }
37}
38
39#[cfg(test)]
40mod tests {
41    use super::*;
42    use snarkvm_circuit_types::environment::Circuit;
43    use snarkvm_curves::{AffineCurve, ProjectiveCurve};
44    use snarkvm_utilities::{TestRng, Uniform};
45
46    use anyhow::Result;
47
48    const ITERATIONS: u64 = 100;
49    const DOMAIN: &str = "BHPCircuit0";
50
51    fn check_commit_uncompressed<const NUM_WINDOWS: u8, const WINDOW_SIZE: u8>(
52        mode: Mode,
53        num_constants: u64,
54        num_public: u64,
55        num_private: u64,
56        num_constraints: u64,
57    ) -> Result<()> {
58        use console::CommitUncompressed as C;
59
60        let native = console::BHP::<<Circuit as Environment>::Network, NUM_WINDOWS, WINDOW_SIZE>::setup(DOMAIN)?;
62        let circuit = BHP::<Circuit, NUM_WINDOWS, WINDOW_SIZE>::new(Mode::Constant, native.clone());
63        let num_input_bits = NUM_WINDOWS as usize * WINDOW_SIZE as usize * BHP_CHUNK_SIZE;
65
66        let mut rng = TestRng::default();
67
68        for i in 0..ITERATIONS {
69            let input = (0..num_input_bits).map(|_| bool::rand(&mut rng)).collect::<Vec<bool>>();
71            let randomizer = Uniform::rand(&mut rng);
73            let expected = native.commit_uncompressed(&input, &randomizer).expect("Failed to commit native input");
75            let circuit_input: Vec<Boolean<_>> = Inject::new(mode, input);
77            let circuit_randomizer: Scalar<_> = Inject::new(mode, randomizer);
79
80            Circuit::scope(format!("BHP {mode} {i}"), || {
81                let candidate = circuit.commit_uncompressed(&circuit_input, &circuit_randomizer);
83                assert_scope!(<=num_constants, num_public, num_private, num_constraints);
84                assert_eq!(expected, candidate.eject_value());
85                assert!(candidate.eject_value().to_affine().is_on_curve());
86                assert!(candidate.eject_value().to_affine().is_in_correct_subgroup_assuming_on_curve());
87            });
88            Circuit::reset();
89        }
90        Ok(())
91    }
92
93    #[test]
94    fn test_commit_uncompressed_constant() -> Result<()> {
95        check_commit_uncompressed::<32, 48>(Mode::Constant, 8200, 0, 0, 0)
96    }
97
98    #[test]
99    fn test_commit_uncompressed_public() -> Result<()> {
100        check_commit_uncompressed::<32, 48>(Mode::Public, 1044, 0, 10781, 10785)
101    }
102
103    #[test]
104    fn test_commit_uncompressed_private() -> Result<()> {
105        check_commit_uncompressed::<32, 48>(Mode::Private, 1044, 0, 10781, 10785)
106    }
107}