Struct mina_curves::pasta::curves::vesta::VestaParameters
source · pub struct VestaParameters;
Implementations§
source§impl VestaParameters
impl VestaParameters
pub fn mul_by_a( _: &<VestaParameters as CurveConfig>::BaseField ) -> <VestaParameters as CurveConfig>::BaseField
Trait Implementations§
source§impl Clone for VestaParameters
impl Clone for VestaParameters
source§fn clone(&self) -> VestaParameters
fn clone(&self) -> VestaParameters
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl CurveConfig for VestaParameters
impl CurveConfig for VestaParameters
source§const COFACTOR_INV: Fp = _
const COFACTOR_INV: Fp = _
COFACTOR_INV = 1
§type ScalarField = Fp<MontBackend<FqConfig, 4>, 4>
type ScalarField = Fp<MontBackend<FqConfig, 4>, 4>
Finite prime field corresponding to an appropriate prime-order subgroup
of the curve group.
fn cofactor_is_one() -> bool
source§impl Debug for VestaParameters
impl Debug for VestaParameters
source§impl Default for VestaParameters
impl Default for VestaParameters
source§fn default() -> VestaParameters
fn default() -> VestaParameters
Returns the “default value” for a type. Read more
source§impl PartialEq<VestaParameters> for VestaParameters
impl PartialEq<VestaParameters> for VestaParameters
source§fn eq(&self, other: &VestaParameters) -> bool
fn eq(&self, other: &VestaParameters) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SWCurveConfig for VestaParameters
impl SWCurveConfig for VestaParameters
§fn mul_by_a(elem: Self::BaseField) -> Self::BaseField
fn mul_by_a(elem: Self::BaseField) -> Self::BaseField
Helper method for computing
elem * Self::COEFF_A
. Read more§fn add_b(elem: Self::BaseField) -> Self::BaseField
fn add_b(elem: Self::BaseField) -> Self::BaseField
Helper method for computing
elem + Self::COEFF_B
. Read more§fn is_in_correct_subgroup_assuming_on_curve(item: &Affine<Self>) -> bool
fn is_in_correct_subgroup_assuming_on_curve(item: &Affine<Self>) -> bool
Check if the provided curve point is in the prime-order subgroup. Read more
§fn clear_cofactor(item: &Affine<Self>) -> Affine<Self>
fn clear_cofactor(item: &Affine<Self>) -> Affine<Self>
Performs cofactor clearing.
The default method is simply to multiply by the cofactor.
Some curves can implement a more efficient algorithm.
§fn mul_projective(base: &Projective<Self>, scalar: &[u64]) -> Projective<Self>
fn mul_projective(base: &Projective<Self>, scalar: &[u64]) -> Projective<Self>
Default implementation of group multiplication for projective
coordinates
§fn mul_affine(base: &Affine<Self>, scalar: &[u64]) -> Projective<Self>
fn mul_affine(base: &Affine<Self>, scalar: &[u64]) -> Projective<Self>
Default implementation of group multiplication for affine
coordinates.
§fn msm(
bases: &[Affine<Self>],
scalars: &[Self::ScalarField]
) -> Result<Projective<Self>, usize>
fn msm( bases: &[Affine<Self>], scalars: &[Self::ScalarField] ) -> Result<Projective<Self>, usize>
Default implementation for multi scalar multiplication
§fn serialize_with_mode<W>(
item: &Affine<Self>,
writer: W,
compress: Compress
) -> Result<(), SerializationError>where
W: Write,
fn serialize_with_mode<W>( item: &Affine<Self>, writer: W, compress: Compress ) -> Result<(), SerializationError>where W: Write,
If uncompressed, serializes both x and y coordinates as well as a bit for whether it is
infinity. If compressed, serializes x coordinate with two bits to encode whether y is
positive, negative, or infinity.
§fn deserialize_with_mode<R>(
reader: R,
compress: Compress,
validate: Validate
) -> Result<Affine<Self>, SerializationError>where
R: Read,
fn deserialize_with_mode<R>( reader: R, compress: Compress, validate: Validate ) -> Result<Affine<Self>, SerializationError>where R: Read,
If
validate
is Yes
, calls check()
to make sure the element is valid.fn serialized_size(compress: Compress) -> usize
impl Eq for VestaParameters
impl StructuralEq for VestaParameters
impl StructuralPartialEq for VestaParameters
Auto Trait Implementations§
impl RefUnwindSafe for VestaParameters
impl Send for VestaParameters
impl Sync for VestaParameters
impl Unpin for VestaParameters
impl UnwindSafe for VestaParameters
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more