[][src]Struct curve25519_dalek::ristretto::RistrettoBasepointTable

pub struct RistrettoBasepointTable(_);

A precomputed table of multiples of a basepoint, used to accelerate scalar multiplication.

A precomputed table of multiples of the Ristretto basepoint is available in the constants module:

use curve25519_dalek::constants;
use curve25519_dalek::scalar::Scalar;

let a = Scalar::from(87329482u64);
let P = &a * &constants::RISTRETTO_BASEPOINT_TABLE;

Methods

impl RistrettoBasepointTable[src]

pub fn create(basepoint: &RistrettoPoint) -> RistrettoBasepointTable[src]

Create a precomputed table of multiples of the given basepoint.

pub fn basepoint(&self) -> RistrettoPoint[src]

Get the basepoint for this table as a RistrettoPoint.

Trait Implementations

impl Clone for RistrettoBasepointTable[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a, 'b> Mul<&'b Scalar> for &'a RistrettoBasepointTable[src]

type Output = RistrettoPoint

The resulting type after applying the * operator.

impl<'a, 'b> Mul<&'a RistrettoBasepointTable> for &'b Scalar[src]

type Output = RistrettoPoint

The resulting type after applying the * operator.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> FromCast for T[src]

impl<T, U> Cast for T where
    U: FromCast<T>, 
[src]

impl<T, U> IntoBits for T where
    U: FromBits<T>, 
[src]

impl<T> FromBits for T[src]

impl<T> Same for T

type Output = T

Should always be Self