Struct secp256kfun_parity_backend::ecmult::ECMultContext[][src]

pub struct ECMultContext { /* fields omitted */ }

Context for accelerating the computation of aP + bG.

Implementations

impl ECMultContext[src]

pub const unsafe fn new_from_raw(pre_g: [AffineStorage; 16384]) -> Self[src]

Create a new ECMultContext from raw values.

The function is unsafe because incorrect value of pre_g can lead to crypto logic failure. You most likely do not want to use this function, but ECMultContext::new_boxed.

pub fn inspect_raw(&self) -> &[AffineStorage; 16384][src]

Inspect raw values of ECMultContext.

impl ECMultContext[src]

pub fn ecmult(&self, r: &mut Jacobian, a: &Jacobian, na: &Scalar, ng: &Scalar)[src]

pub fn ecmult_const(&self, r: &mut Jacobian, a: &Affine, scalar: &Scalar)[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.