Struct curve25519_dalek::ristretto::RistrettoBasepointTable [−][src]
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;
Implementations
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][+]
impl<'a, 'b> Mul<&'b Scalar> for &'a RistrettoBasepointTable
[src][+]
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][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,