pub struct Projective<P>where
P: TECurveConfig,{
pub x: <P as CurveConfig>::BaseField,
pub y: <P as CurveConfig>::BaseField,
pub t: <P as CurveConfig>::BaseField,
pub z: <P as CurveConfig>::BaseField,
}
Expand description
Projective
implements Extended Twisted Edwards Coordinates
as described in [HKCD08].
This implementation uses the unified addition formulae from that paper (see Section 3.1).
Fields§
§x: <P as CurveConfig>::BaseField
§y: <P as CurveConfig>::BaseField
§t: <P as CurveConfig>::BaseField
§z: <P as CurveConfig>::BaseField
Implementations§
Source§impl<P> Projective<P>where
P: TECurveConfig,
impl<P> Projective<P>where
P: TECurveConfig,
Sourcepub const fn new_unchecked(
x: <P as CurveConfig>::BaseField,
y: <P as CurveConfig>::BaseField,
t: <P as CurveConfig>::BaseField,
z: <P as CurveConfig>::BaseField,
) -> Projective<P>
pub const fn new_unchecked( x: <P as CurveConfig>::BaseField, y: <P as CurveConfig>::BaseField, t: <P as CurveConfig>::BaseField, z: <P as CurveConfig>::BaseField, ) -> Projective<P>
Construct a new group element without checking whether the coordinates specify a point in the subgroup.
Sourcepub fn new(
x: <P as CurveConfig>::BaseField,
y: <P as CurveConfig>::BaseField,
t: <P as CurveConfig>::BaseField,
z: <P as CurveConfig>::BaseField,
) -> Projective<P>
pub fn new( x: <P as CurveConfig>::BaseField, y: <P as CurveConfig>::BaseField, t: <P as CurveConfig>::BaseField, z: <P as CurveConfig>::BaseField, ) -> Projective<P>
Construct a new group element in a way while enforcing that points are in the prime-order subgroup.
Trait Implementations§
Source§impl<'a, 'b, P> Add<&'a Projective<P>> for &'b Projective<P>where
P: TECurveConfig,
impl<'a, 'b, P> Add<&'a Projective<P>> for &'b Projective<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
+
operator.Source§fn add(self, other: &'a Projective<P>) -> Projective<P>
fn add(self, other: &'a Projective<P>) -> Projective<P>
Performs the
+
operation. Read moreSource§impl<'a, P> Add<&'a Projective<P>> for Affine<P>where
P: TECurveConfig,
impl<'a, P> Add<&'a Projective<P>> for Affine<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
+
operator.Source§fn add(self, other: &'a Projective<P>) -> Projective<P>
fn add(self, other: &'a Projective<P>) -> Projective<P>
Performs the
+
operation. Read moreSource§impl<'a, P> Add<&'a Projective<P>> for Projective<P>where
P: TECurveConfig,
impl<'a, P> Add<&'a Projective<P>> for Projective<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
+
operator.Source§fn add(self, other: &'a Projective<P>) -> Projective<P>
fn add(self, other: &'a Projective<P>) -> Projective<P>
Performs the
+
operation. Read moreSource§impl<'a, 'b, P> Add<&'a mut Projective<P>> for &'b Projective<P>where
P: TECurveConfig,
impl<'a, 'b, P> Add<&'a mut Projective<P>> for &'b Projective<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
+
operator.Source§fn add(self, other: &'a mut Projective<P>) -> Projective<P>
fn add(self, other: &'a mut Projective<P>) -> Projective<P>
Performs the
+
operation. Read moreSource§impl<'a, P> Add<&'a mut Projective<P>> for Projective<P>where
P: TECurveConfig,
impl<'a, P> Add<&'a mut Projective<P>> for Projective<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
+
operator.Source§fn add(self, other: &'a mut Projective<P>) -> Projective<P>
fn add(self, other: &'a mut Projective<P>) -> Projective<P>
Performs the
+
operation. Read moreSource§impl<'b, P> Add<Projective<P>> for &'b Projective<P>where
P: TECurveConfig,
impl<'b, P> Add<Projective<P>> for &'b Projective<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
+
operator.Source§fn add(self, other: Projective<P>) -> Projective<P>
fn add(self, other: Projective<P>) -> Projective<P>
Performs the
+
operation. Read moreSource§impl<P> Add<Projective<P>> for Affine<P>where
P: TECurveConfig,
impl<P> Add<Projective<P>> for Affine<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
+
operator.Source§fn add(self, other: Projective<P>) -> Projective<P>
fn add(self, other: Projective<P>) -> Projective<P>
Performs the
+
operation. Read moreSource§impl<P, T> Add<T> for Projective<P>
impl<P, T> Add<T> for Projective<P>
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
+
operator.Source§fn add(self, other: T) -> Projective<P>
fn add(self, other: T) -> Projective<P>
Performs the
+
operation. Read moreSource§impl<P> Add for Projective<P>where
P: TECurveConfig,
impl<P> Add for Projective<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
+
operator.Source§fn add(self, other: Projective<P>) -> Projective<P>
fn add(self, other: Projective<P>) -> Projective<P>
Performs the
+
operation. Read moreSource§impl<'a, P> AddAssign<&'a Projective<P>> for Projective<P>where
P: TECurveConfig,
impl<'a, P> AddAssign<&'a Projective<P>> for Projective<P>where
P: TECurveConfig,
Source§fn add_assign(&mut self, other: &'a Projective<P>)
fn add_assign(&mut self, other: &'a Projective<P>)
Performs the
+=
operation. Read moreSource§impl<'a, P> AddAssign<&'a mut Projective<P>> for Projective<P>where
P: TECurveConfig,
impl<'a, P> AddAssign<&'a mut Projective<P>> for Projective<P>where
P: TECurveConfig,
Source§fn add_assign(&mut self, other: &'a mut Projective<P>)
fn add_assign(&mut self, other: &'a mut Projective<P>)
Performs the
+=
operation. Read moreSource§impl<P, T> AddAssign<T> for Projective<P>
impl<P, T> AddAssign<T> for Projective<P>
Source§fn add_assign(&mut self, other: T)
fn add_assign(&mut self, other: T)
Performs the
+=
operation. Read moreSource§impl<P> AddAssign for Projective<P>where
P: TECurveConfig,
impl<P> AddAssign for Projective<P>where
P: TECurveConfig,
Source§fn add_assign(&mut self, other: Projective<P>)
fn add_assign(&mut self, other: Projective<P>)
Performs the
+=
operation. Read moreSource§impl<P> AdditiveGroup for Projective<P>where
P: TECurveConfig,
impl<P> AdditiveGroup for Projective<P>where
P: TECurveConfig,
Source§const ZERO: Projective<P> = _
const ZERO: Projective<P> = _
The additive identity of the field.
type Scalar = <P as CurveConfig>::ScalarField
Source§fn double_in_place(&mut self) -> &mut Projective<P>
fn double_in_place(&mut self) -> &mut Projective<P>
Doubles
self
in place.Source§fn neg_in_place(&mut self) -> &mut Self
fn neg_in_place(&mut self) -> &mut Self
Negates
self
in place.Source§impl<P> CanonicalDeserialize for Projective<P>where
P: TECurveConfig,
impl<P> CanonicalDeserialize for Projective<P>where
P: TECurveConfig,
Source§fn deserialize_with_mode<R>(
reader: R,
compress: Compress,
validate: Validate,
) -> Result<Projective<P>, SerializationError>where
R: Read,
fn deserialize_with_mode<R>(
reader: R,
compress: Compress,
validate: Validate,
) -> Result<Projective<P>, SerializationError>where
R: Read,
The general deserialize method that takes in customization flags.
fn deserialize_compressed<R>(reader: R) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_compressed_unchecked<R>(
reader: R,
) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_uncompressed<R>(reader: R) -> Result<Self, SerializationError>where
R: Read,
fn deserialize_uncompressed_unchecked<R>(
reader: R,
) -> Result<Self, SerializationError>where
R: Read,
Source§impl<P> CanonicalSerialize for Projective<P>where
P: TECurveConfig,
impl<P> CanonicalSerialize for Projective<P>where
P: TECurveConfig,
Source§fn serialize_with_mode<W>(
&self,
writer: W,
compress: Compress,
) -> Result<(), SerializationError>where
W: Write,
fn serialize_with_mode<W>(
&self,
writer: W,
compress: Compress,
) -> Result<(), SerializationError>where
W: Write,
The general serialize method that takes in customization flags.
fn serialized_size(&self, compress: Compress) -> usize
fn serialize_compressed<W>(&self, writer: W) -> Result<(), SerializationError>where
W: Write,
fn compressed_size(&self) -> usize
fn serialize_uncompressed<W>(&self, writer: W) -> Result<(), SerializationError>where
W: Write,
fn uncompressed_size(&self) -> usize
Source§impl<P> Clone for Projective<P>
impl<P> Clone for Projective<P>
Source§fn clone(&self) -> Projective<P>
fn clone(&self) -> Projective<P>
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<P> CurveGroup for Projective<P>where
P: TECurveConfig,
impl<P> CurveGroup for Projective<P>where
P: TECurveConfig,
type Config = P
Source§type BaseField = <P as CurveConfig>::BaseField
type BaseField = <P as CurveConfig>::BaseField
The field over which this curve is defined.
Source§type FullGroup = Affine<P>
type FullGroup = Affine<P>
Type representing an element of the full elliptic curve group, not just the
prime order subgroup.
Source§fn normalize_batch(
v: &[Projective<P>],
) -> Vec<<Projective<P> as CurveGroup>::Affine>
fn normalize_batch( v: &[Projective<P>], ) -> Vec<<Projective<P> as CurveGroup>::Affine>
Normalizes a slice of group elements into affine.
Source§fn into_affine(self) -> Self::Affine
fn into_affine(self) -> Self::Affine
Converts
self
into the affine representation.Source§impl<P> Debug for Projective<P>
impl<P> Debug for Projective<P>
Source§impl<P> Default for Projective<P>where
P: TECurveConfig,
impl<P> Default for Projective<P>where
P: TECurveConfig,
Source§fn default() -> Projective<P>
fn default() -> Projective<P>
Returns the “default value” for a type. Read more
Source§impl<P> Display for Projective<P>where
P: TECurveConfig,
impl<P> Display for Projective<P>where
P: TECurveConfig,
Source§impl<P> From<Affine<P>> for Projective<P>where
P: TECurveConfig,
impl<P> From<Affine<P>> for Projective<P>where
P: TECurveConfig,
Source§fn from(p: Affine<P>) -> Projective<P>
fn from(p: Affine<P>) -> Projective<P>
Converts to this type from the input type.
Source§impl<P> From<Projective<P>> for Affine<P>where
P: TECurveConfig,
impl<P> From<Projective<P>> for Affine<P>where
P: TECurveConfig,
Source§fn from(p: Projective<P>) -> Affine<P>
fn from(p: Projective<P>) -> Affine<P>
Converts to this type from the input type.
Source§impl<P> Hash for Projective<P>where
P: TECurveConfig,
impl<P> Hash for Projective<P>where
P: TECurveConfig,
Source§impl<P> MapToCurve<Projective<P>> for Elligator2Map<P>where
P: Elligator2Config,
impl<P> MapToCurve<Projective<P>> for Elligator2Map<P>where
P: Elligator2Config,
Source§fn check_parameters() -> Result<(), HashToCurveError>
fn check_parameters() -> Result<(), HashToCurveError>
Checks if P
represents a valid Elligator2 map. Panics otherwise.
Source§fn map_to_curve(
element: <P as CurveConfig>::BaseField,
) -> Result<Affine<P>, HashToCurveError>
fn map_to_curve( element: <P as CurveConfig>::BaseField, ) -> Result<Affine<P>, HashToCurveError>
Map an arbitrary base field element element
to a curve point.
Source§impl<P, T> Mul<T> for Projective<P>
impl<P, T> Mul<T> for Projective<P>
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
*
operator.Source§fn mul(self, other: T) -> Projective<P>
fn mul(self, other: T) -> Projective<P>
Performs the
*
operation. Read moreSource§impl<P, T> MulAssign<T> for Projective<P>
impl<P, T> MulAssign<T> for Projective<P>
Source§fn mul_assign(&mut self, other: T)
fn mul_assign(&mut self, other: T)
Performs the
*=
operation. Read moreSource§impl<P> Neg for Projective<P>where
P: TECurveConfig,
impl<P> Neg for Projective<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
-
operator.Source§fn neg(self) -> Projective<P>
fn neg(self) -> Projective<P>
Performs the unary
-
operation. Read moreSource§impl<P> PartialEq<Affine<P>> for Projective<P>where
P: TECurveConfig,
impl<P> PartialEq<Affine<P>> for Projective<P>where
P: TECurveConfig,
Source§impl<P> PartialEq<Projective<P>> for Affine<P>where
P: TECurveConfig,
impl<P> PartialEq<Projective<P>> for Affine<P>where
P: TECurveConfig,
Source§impl<P> PartialEq for Projective<P>where
P: TECurveConfig,
impl<P> PartialEq for Projective<P>where
P: TECurveConfig,
Source§impl<P> PrimeGroup for Projective<P>where
P: TECurveConfig,
impl<P> PrimeGroup for Projective<P>where
P: TECurveConfig,
Source§type ScalarField = <P as CurveConfig>::ScalarField
type ScalarField = <P as CurveConfig>::ScalarField
The scalar field
F_r
, where r
is the order of this group.Source§fn generator() -> Projective<P>
fn generator() -> Projective<P>
Returns a fixed generator of this group.
Source§fn mul_bigint(&self, other: impl AsRef<[u64]>) -> Projective<P>
fn mul_bigint(&self, other: impl AsRef<[u64]>) -> Projective<P>
Performs scalar multiplication of this element.
Source§fn mul_bits_be(&self, other: impl Iterator<Item = bool>) -> Self
fn mul_bits_be(&self, other: impl Iterator<Item = bool>) -> Self
Computes
other * self
, where other
is a big-endian
bit representation of some integer.Source§impl<P> ScalarMul for Projective<P>where
P: TECurveConfig,
impl<P> ScalarMul for Projective<P>where
P: TECurveConfig,
const NEGATION_IS_CHEAP: bool = true
type MulBase = Affine<P>
fn batch_convert_to_mul_base( bases: &[Projective<P>], ) -> Vec<<Projective<P> as ScalarMul>::MulBase>
Source§fn batch_mul(self, v: &[Self::ScalarField]) -> Vec<Self::MulBase>
fn batch_mul(self, v: &[Self::ScalarField]) -> Vec<Self::MulBase>
Compute the vector v[0].G, v[1].G, …, v[n-1].G, given: Read more
Source§fn batch_mul_with_preprocessing(
table: &BatchMulPreprocessing<Self>,
v: &[Self::ScalarField],
) -> Vec<Self::MulBase>
fn batch_mul_with_preprocessing( table: &BatchMulPreprocessing<Self>, v: &[Self::ScalarField], ) -> Vec<Self::MulBase>
Compute the vector v[0].G, v[1].G, …, v[n-1].G, given: Read more
Source§impl<'a, 'b, P> Sub<&'a Projective<P>> for &'b Projective<P>where
P: TECurveConfig,
impl<'a, 'b, P> Sub<&'a Projective<P>> for &'b Projective<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
-
operator.Source§fn sub(self, other: &'a Projective<P>) -> Projective<P>
fn sub(self, other: &'a Projective<P>) -> Projective<P>
Performs the
-
operation. Read moreSource§impl<'a, P> Sub<&'a Projective<P>> for Affine<P>where
P: TECurveConfig,
impl<'a, P> Sub<&'a Projective<P>> for Affine<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
-
operator.Source§fn sub(self, other: &'a Projective<P>) -> Projective<P>
fn sub(self, other: &'a Projective<P>) -> Projective<P>
Performs the
-
operation. Read moreSource§impl<'a, P> Sub<&'a Projective<P>> for Projective<P>where
P: TECurveConfig,
impl<'a, P> Sub<&'a Projective<P>> for Projective<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
-
operator.Source§fn sub(self, other: &'a Projective<P>) -> Projective<P>
fn sub(self, other: &'a Projective<P>) -> Projective<P>
Performs the
-
operation. Read moreSource§impl<'a, 'b, P> Sub<&'a mut Projective<P>> for &'b Projective<P>where
P: TECurveConfig,
impl<'a, 'b, P> Sub<&'a mut Projective<P>> for &'b Projective<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
-
operator.Source§fn sub(self, other: &'a mut Projective<P>) -> Projective<P>
fn sub(self, other: &'a mut Projective<P>) -> Projective<P>
Performs the
-
operation. Read moreSource§impl<'a, P> Sub<&'a mut Projective<P>> for Projective<P>where
P: TECurveConfig,
impl<'a, P> Sub<&'a mut Projective<P>> for Projective<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
-
operator.Source§fn sub(self, other: &'a mut Projective<P>) -> Projective<P>
fn sub(self, other: &'a mut Projective<P>) -> Projective<P>
Performs the
-
operation. Read moreSource§impl<'b, P> Sub<Projective<P>> for &'b Projective<P>where
P: TECurveConfig,
impl<'b, P> Sub<Projective<P>> for &'b Projective<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
-
operator.Source§fn sub(self, other: Projective<P>) -> Projective<P>
fn sub(self, other: Projective<P>) -> Projective<P>
Performs the
-
operation. Read moreSource§impl<P> Sub<Projective<P>> for Affine<P>where
P: TECurveConfig,
impl<P> Sub<Projective<P>> for Affine<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
-
operator.Source§fn sub(self, other: Projective<P>) -> Projective<P>
fn sub(self, other: Projective<P>) -> Projective<P>
Performs the
-
operation. Read moreSource§impl<P, T> Sub<T> for Projective<P>
impl<P, T> Sub<T> for Projective<P>
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
-
operator.Source§fn sub(self, other: T) -> Projective<P>
fn sub(self, other: T) -> Projective<P>
Performs the
-
operation. Read moreSource§impl<P> Sub for Projective<P>where
P: TECurveConfig,
impl<P> Sub for Projective<P>where
P: TECurveConfig,
Source§type Output = Projective<P>
type Output = Projective<P>
The resulting type after applying the
-
operator.Source§fn sub(self, other: Projective<P>) -> Projective<P>
fn sub(self, other: Projective<P>) -> Projective<P>
Performs the
-
operation. Read moreSource§impl<'a, P> SubAssign<&'a Projective<P>> for Projective<P>where
P: TECurveConfig,
impl<'a, P> SubAssign<&'a Projective<P>> for Projective<P>where
P: TECurveConfig,
Source§fn sub_assign(&mut self, other: &'a Projective<P>)
fn sub_assign(&mut self, other: &'a Projective<P>)
Performs the
-=
operation. Read moreSource§impl<'a, P> SubAssign<&'a mut Projective<P>> for Projective<P>where
P: TECurveConfig,
impl<'a, P> SubAssign<&'a mut Projective<P>> for Projective<P>where
P: TECurveConfig,
Source§fn sub_assign(&mut self, other: &'a mut Projective<P>)
fn sub_assign(&mut self, other: &'a mut Projective<P>)
Performs the
-=
operation. Read moreSource§impl<P, T> SubAssign<T> for Projective<P>
impl<P, T> SubAssign<T> for Projective<P>
Source§fn sub_assign(&mut self, other: T)
fn sub_assign(&mut self, other: T)
Performs the
-=
operation. Read moreSource§impl<P> SubAssign for Projective<P>where
P: TECurveConfig,
impl<P> SubAssign for Projective<P>where
P: TECurveConfig,
Source§fn sub_assign(&mut self, other: Projective<P>)
fn sub_assign(&mut self, other: Projective<P>)
Performs the
-=
operation. Read moreSource§impl<'a, P> Sum<&'a Projective<P>> for Projective<P>where
P: TECurveConfig,
impl<'a, P> Sum<&'a Projective<P>> for Projective<P>where
P: TECurveConfig,
Source§fn sum<I>(iter: I) -> Projective<P>where
I: Iterator<Item = &'a Projective<P>>,
fn sum<I>(iter: I) -> Projective<P>where
I: Iterator<Item = &'a Projective<P>>,
Takes an iterator and generates
Self
from the elements by “summing up”
the items.Source§impl<P, T> Sum<T> for Projective<P>
impl<P, T> Sum<T> for Projective<P>
Source§fn sum<I>(iter: I) -> Projective<P>where
I: Iterator<Item = T>,
fn sum<I>(iter: I) -> Projective<P>where
I: Iterator<Item = T>,
Takes an iterator and generates
Self
from the elements by “summing up”
the items.Source§impl<P> Sum for Projective<P>where
P: TECurveConfig,
impl<P> Sum for Projective<P>where
P: TECurveConfig,
Source§fn sum<I>(iter: I) -> Projective<P>where
I: Iterator<Item = Projective<P>>,
fn sum<I>(iter: I) -> Projective<P>where
I: Iterator<Item = Projective<P>>,
Takes an iterator and generates
Self
from the elements by “summing up”
the items.Source§impl<M, ConstraintF> ToConstraintField<ConstraintF> for Projective<M>where
M: TECurveConfig,
ConstraintF: Field,
<M as CurveConfig>::BaseField: ToConstraintField<ConstraintF>,
impl<M, ConstraintF> ToConstraintField<ConstraintF> for Projective<M>where
M: TECurveConfig,
ConstraintF: Field,
<M as CurveConfig>::BaseField: ToConstraintField<ConstraintF>,
fn to_field_elements(&self) -> Option<Vec<ConstraintF>>
Source§impl<P> Valid for Projective<P>where
P: TECurveConfig,
impl<P> Valid for Projective<P>where
P: TECurveConfig,
fn check(&self) -> Result<(), SerializationError>
fn batch_check<'a>(
batch: impl Iterator<Item = &'a Projective<P>> + Send,
) -> Result<(), SerializationError>where
Projective<P>: 'a,
Source§impl<P> VariableBaseMSM for Projective<P>where
P: TECurveConfig,
impl<P> VariableBaseMSM for Projective<P>where
P: TECurveConfig,
Source§fn msm(
bases: &[<Projective<P> as ScalarMul>::MulBase],
bigints: &[<Projective<P> as PrimeGroup>::ScalarField],
) -> Result<Projective<P>, usize>
fn msm( bases: &[<Projective<P> as ScalarMul>::MulBase], bigints: &[<Projective<P> as PrimeGroup>::ScalarField], ) -> Result<Projective<P>, usize>
Performs multi-scalar multiplication. Read more
Source§fn msm_unchecked(bases: &[Self::MulBase], scalars: &[Self::ScalarField]) -> Self
fn msm_unchecked(bases: &[Self::MulBase], scalars: &[Self::ScalarField]) -> Self
Computes an inner product between the
PrimeField
elements in scalars
and the corresponding group elements in bases
. Read moreSource§fn msm_bigint(
bases: &[Self::MulBase],
bigints: &[<Self::ScalarField as PrimeField>::BigInt],
) -> Self
fn msm_bigint( bases: &[Self::MulBase], bigints: &[<Self::ScalarField as PrimeField>::BigInt], ) -> Self
Optimized implementation of multi-scalar multiplication.
Source§impl<P> Zero for Projective<P>where
P: TECurveConfig,
impl<P> Zero for Projective<P>where
P: TECurveConfig,
Source§impl<P> Zeroize for Projective<P>where
P: TECurveConfig,
impl<P> Zeroize for Projective<P>where
P: TECurveConfig,
impl<P> Copy for Projective<P>
impl<P> Eq for Projective<P>where
P: TECurveConfig,
Auto Trait Implementations§
impl<P> Freeze for Projective<P>
impl<P> RefUnwindSafe for Projective<P>
impl<P> Send for Projective<P>
impl<P> Sync for Projective<P>
impl<P> Unpin for Projective<P>
impl<P> UnwindSafe for Projective<P>
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
Source§impl<T> CanonicalSerializeHashExt for Twhere
T: CanonicalSerialize,
impl<T> CanonicalSerializeHashExt for Twhere
T: CanonicalSerialize,
fn hash<H>(&self) -> GenericArray<u8, <H as OutputSizeUser>::OutputSize>where
H: Digest,
fn hash_uncompressed<H>(
&self,
) -> GenericArray<u8, <H as OutputSizeUser>::OutputSize>where
H: Digest,
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more