Struct secp256kfun_parity_backend::ecmult::ECMultGenContext[][src]

pub struct ECMultGenContext { /* fields omitted */ }

Context for accelerating the computation of a*G.

Implementations

impl ECMultGenContext[src]

pub const unsafe fn new_from_raw(prec: [[AffineStorage; 16]; 64]) -> Self[src]

Create a new ECMultGenContext 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 ECMultGenContext::new_boxed.

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

Inspect ECMultGenContext values.

impl ECMultGenContext[src]

pub fn ecmult_gen(&self, r: &mut Jacobian, gn: &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.