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

pub struct RistrettoBasepointTable(pub(crate) EdwardsBasepointTable);

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]

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

type Output = RistrettoPoint

The resulting type after applying the * operator.

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

type Output = RistrettoPoint

The resulting type after applying the * operator.

Auto Trait Implementations

impl RefUnwindSafe for RistrettoBasepointTable

impl Send for RistrettoBasepointTable

impl Sync for RistrettoBasepointTable

impl Unpin for RistrettoBasepointTable

impl UnwindSafe for RistrettoBasepointTable

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, U> Cast<U> for T where
    U: FromCast<T>, 

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

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

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.