zksync_bellman 0.32.11

zk-SNARK library, based on bellman
Documentation
1
2
3
4
5
6
7
8
9
use crate::ff::PrimeField;

pub trait FftPrecomputations<F: PrimeField>: Send + Sync {
    fn new_for_domain_size(size: usize) -> Self;
    fn element_for_index(&self, index: usize) -> &F;
    fn domain_size(&self) -> usize;
}

pub(crate) mod fft;