Struct mina_curves::pasta::curves::pallas::PallasParameters
source · pub struct PallasParameters;
Implementations§
source§impl PallasParameters
impl PallasParameters
pub fn mul_by_a( _: &<PallasParameters as CurveConfig>::BaseField ) -> <PallasParameters as CurveConfig>::BaseField
Trait Implementations§
source§impl Clone for PallasParameters
impl Clone for PallasParameters
source§fn clone(&self) -> PallasParameters
fn clone(&self) -> PallasParameters
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 PallasParameters
impl CurveConfig for PallasParameters
source§const COFACTOR_INV: Fq = _
const COFACTOR_INV: Fq = _
COFACTOR_INV = 1
§type ScalarField = Fp<MontBackend<FrConfig, 4>, 4>
type ScalarField = Fp<MontBackend<FrConfig, 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 PallasParameters
impl Debug for PallasParameters
source§impl Default for PallasParameters
impl Default for PallasParameters
source§fn default() -> PallasParameters
fn default() -> PallasParameters
Returns the “default value” for a type. Read more
source§impl PartialEq<PallasParameters> for PallasParameters
impl PartialEq<PallasParameters> for PallasParameters
source§fn eq(&self, other: &PallasParameters) -> bool
fn eq(&self, other: &PallasParameters) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SWCurveConfig for PallasParameters
impl SWCurveConfig for PallasParameters
§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 PallasParameters
impl StructuralEq for PallasParameters
impl StructuralPartialEq for PallasParameters
Auto Trait Implementations§
impl RefUnwindSafe for PallasParameters
impl Send for PallasParameters
impl Sync for PallasParameters
impl Unpin for PallasParameters
impl UnwindSafe for PallasParameters
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