Skip to main content

NttInverse

Trait NttInverse 

Source
pub(crate) trait NttInverse {
    type Output;

    // Required method
    fn ntt_inverse(&self) -> Self::Output;
}
Expand description

The inverse NTT is the reverse of the Number Theoretic Transform, converting coefficient-wise products back into standard polynomial form while preserving correctness modulo the same prime.

Required Associated Types§

Required Methods§

Source

fn ntt_inverse(&self) -> Self::Output

Implementations on Foreign Types§

Source§

impl NttInverse for NttPolynomial<BaseField>

Algorithm 10: NTT^{-1}

Source§

impl<K: ArraySize> NttInverse for NttVector<BaseField, K>

Implementors§