[][src]Trait pq_newhope::poly::Ntt

pub trait Ntt {
    type Output: Ntt;
    fn ntt(self) -> Self::Output;
fn inv_ntt(self) -> Self::Output; }

Associated Types

type Output: Ntt

Loading content...

Required methods

fn ntt(self) -> Self::Output

fn inv_ntt(self) -> Self::Output

Loading content...

Implementors

impl<BitOrder, Size, Domain> Ntt for Poly<U1024, (BitOrder, Size, Domain)> where
    BitOrder: Involution,
    Size: Involution,
    Domain: Involution, 
[src]

type Output = Poly<U1024, (BitOrder::Op, Size, Domain::Op)>

Loading content...