[−][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 Clone for RistrettoBasepointTable
[src]
fn clone(&self) -> 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.
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]
Auto Trait Implementations
impl Send for RistrettoBasepointTable
impl Sync for RistrettoBasepointTable
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)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> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
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.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut 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,
impl<T> FromCast for T
[src]
impl<T, U> Cast for T where
U: FromCast<T>,
[src]
U: FromCast<T>,
impl<T, U> IntoBits for T where
U: FromBits<T>,
[src]
U: FromBits<T>,
impl<T> FromBits for T
[src]
impl<T> Same for T
type Output = T
Should always be Self