Trait crypto_bigint::prelude::NegMod[][src]

pub trait NegMod {
    type Output;
    fn neg_mod(&self, p: &Self) -> Self::Output;
}
Expand description

Compute -self mod p.

Associated Types

Output type.

Required methods

Compute -self mod p.

Implementors