Trait crypto_bigint::Pow

source ·
pub trait Pow<Exponent> {
    // Required method
    fn pow(&self, exponent: &Exponent) -> Self;
}
Expand description

Constant-time exponentiation.

Required Methods§

source

fn pow(&self, exponent: &Exponent) -> Self

Raises to the exponent power.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: PowBoundedExp<Exponent>, Exponent: Bounded> Pow<Exponent> for T