[−][src]Struct curve25519_dalek::ristretto::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<'a, 'b> Mul<&'b Scalar> for &'a RistrettoBasepointTable
[src]
type Output = RistrettoPoint
The resulting type after applying the *
operator.
fn mul(self, scalar: &'b Scalar) -> RistrettoPoint
[src]
impl<'a, 'b> Mul<&'a RistrettoBasepointTable> for &'b Scalar
[src]
type Output = RistrettoPoint
The resulting type after applying the *
operator.
fn mul(self, basepoint_table: &'a RistrettoBasepointTable) -> RistrettoPoint
[src]
impl Clone for RistrettoBasepointTable
[src]
fn clone(&self) -> RistrettoBasepointTable
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Auto Trait Implementations
impl Unpin for RistrettoBasepointTable
impl Send for RistrettoBasepointTable
impl Sync for RistrettoBasepointTable
impl UnwindSafe for RistrettoBasepointTable
impl RefUnwindSafe for RistrettoBasepointTable
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self