pub fn NTT<T>(
domain_size: usize,
inout: &mut [T],
ntt_order: NTTInputOutputOrder,
ntt_direction: NTTDirection,
ntt_type: NTTType,
) -> Result<(), Error>
Expand description
Compute an in-place NTT on the input data.
pub fn NTT<T>(
domain_size: usize,
inout: &mut [T],
ntt_order: NTTInputOutputOrder,
ntt_direction: NTTDirection,
ntt_type: NTTType,
) -> Result<(), Error>
Compute an in-place NTT on the input data.