Struct ark_ec::msm::FixedBaseMSM[][src]

pub struct FixedBaseMSM;

Implementations

impl FixedBaseMSM[src]

pub fn get_mul_window_size(num_scalars: usize) -> usize[src]

pub fn get_window_table<T: ProjectiveCurve>(
    scalar_size: usize,
    window: usize,
    g: T
) -> Vec<Vec<T::Affine>>
[src]

pub fn windowed_mul<T: ProjectiveCurve>(
    outerc: usize,
    window: usize,
    multiples_of_g: &[Vec<T::Affine>],
    scalar: &T::ScalarField
) -> T
[src]

pub fn multi_scalar_mul<T: ProjectiveCurve>(
    scalar_size: usize,
    window: usize,
    table: &[Vec<T::Affine>],
    v: &[T::ScalarField]
) -> Vec<T>
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,