zkevm_circuits 0.153.12

ZKsync Era circuits for EraVM
1
2
3
4
5
6
7
8
9
10
11
use lazy_static::lazy_static;

pub mod u256;

// All tests gathered in one place
lazy_static! {
    /// Test cases for 32-32-32 modexp
    pub static ref MODEXP_32_32_32_TEST_CASES: u256::Modexp32BytesTestCases = u256::load_modexp_32_32_32_test_cases();
    /// Test cases for modmul
    pub static ref MODMUL_32_32_TEST_CASES: u256::Modmul32BytesTestCases = u256::load_modmul_32_32_test_cases();
}