pub type ProjectivePoint = ProjectivePoint<NistP256>;
Expand description
Elliptic curve point in projective coordinates.
Aliased Type§
struct ProjectivePoint { /* private fields */ }
Implementations
Source§impl<C> ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> ProjectivePoint<C>where
C: PrimeCurveParams,
Sourcepub const IDENTITY: ProjectivePoint<C>
pub const IDENTITY: ProjectivePoint<C>
Additive identity of the group a.k.a. the point at infinity.
Sourcepub const GENERATOR: ProjectivePoint<C>
pub const GENERATOR: ProjectivePoint<C>
Base point of the curve.
Sourcepub fn to_affine(&self) -> AffinePoint<C>
pub fn to_affine(&self) -> AffinePoint<C>
Returns the affine representation of this point, or None
if it is the identity.
Sourcepub fn neg(&self) -> ProjectivePoint<C>
pub fn neg(&self) -> ProjectivePoint<C>
Returns -self
.
Sourcepub fn add(&self, other: &ProjectivePoint<C>) -> ProjectivePoint<C>
pub fn add(&self, other: &ProjectivePoint<C>) -> ProjectivePoint<C>
Returns self + other
.
Sourcepub fn sub(&self, other: &ProjectivePoint<C>) -> ProjectivePoint<C>
pub fn sub(&self, other: &ProjectivePoint<C>) -> ProjectivePoint<C>
Returns self - other
.
Trait Implementations
Source§impl<C> Add<&AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> Add<&AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§type Output = ProjectivePoint<C>
type Output = ProjectivePoint<C>
The resulting type after applying the
+
operator.Source§fn add(self, other: &AffinePoint<C>) -> ProjectivePoint<C>
fn add(self, other: &AffinePoint<C>) -> ProjectivePoint<C>
Performs the
+
operation. Read moreSource§impl<C> Add<&ProjectivePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> Add<&ProjectivePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§type Output = ProjectivePoint<C>
type Output = ProjectivePoint<C>
The resulting type after applying the
+
operator.Source§fn add(self, other: &ProjectivePoint<C>) -> ProjectivePoint<C>
fn add(self, other: &ProjectivePoint<C>) -> ProjectivePoint<C>
Performs the
+
operation. Read moreSource§impl<C> Add<AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> Add<AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§type Output = ProjectivePoint<C>
type Output = ProjectivePoint<C>
The resulting type after applying the
+
operator.Source§fn add(self, other: AffinePoint<C>) -> ProjectivePoint<C>
fn add(self, other: AffinePoint<C>) -> ProjectivePoint<C>
Performs the
+
operation. Read moreSource§impl<C> Add for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> Add for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§type Output = ProjectivePoint<C>
type Output = ProjectivePoint<C>
The resulting type after applying the
+
operator.Source§fn add(self, other: ProjectivePoint<C>) -> ProjectivePoint<C>
fn add(self, other: ProjectivePoint<C>) -> ProjectivePoint<C>
Performs the
+
operation. Read moreSource§impl<C> AddAssign<&AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> AddAssign<&AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn add_assign(&mut self, rhs: &AffinePoint<C>)
fn add_assign(&mut self, rhs: &AffinePoint<C>)
Performs the
+=
operation. Read moreSource§impl<C> AddAssign<&ProjectivePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> AddAssign<&ProjectivePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn add_assign(&mut self, rhs: &ProjectivePoint<C>)
fn add_assign(&mut self, rhs: &ProjectivePoint<C>)
Performs the
+=
operation. Read moreSource§impl<C> AddAssign<AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> AddAssign<AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn add_assign(&mut self, rhs: AffinePoint<C>)
fn add_assign(&mut self, rhs: AffinePoint<C>)
Performs the
+=
operation. Read moreSource§impl<C> AddAssign for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> AddAssign for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn add_assign(&mut self, rhs: ProjectivePoint<C>)
fn add_assign(&mut self, rhs: ProjectivePoint<C>)
Performs the
+=
operation. Read moreSource§impl<const N: usize, C> BatchNormalize<[ProjectivePoint<C>; N]> for ProjectivePoint<C>where
ProjectivePoint<C>: Double,
C: PrimeCurveParams,
<C as PrimeCurveParams>::FieldElement: Invert<Output = CtOption<<C as PrimeCurveParams>::FieldElement>>,
impl<const N: usize, C> BatchNormalize<[ProjectivePoint<C>; N]> for ProjectivePoint<C>where
ProjectivePoint<C>: Double,
C: PrimeCurveParams,
<C as PrimeCurveParams>::FieldElement: Invert<Output = CtOption<<C as PrimeCurveParams>::FieldElement>>,
Source§type Output = [<ProjectivePoint<C> as Curve>::AffineRepr; N]
type Output = [<ProjectivePoint<C> as Curve>::AffineRepr; N]
The output of the batch normalization; a container of affine points.
Source§fn batch_normalize(
points: &[ProjectivePoint<C>; N],
) -> [<ProjectivePoint<C> as Curve>::AffineRepr; N]
fn batch_normalize( points: &[ProjectivePoint<C>; N], ) -> [<ProjectivePoint<C> as Curve>::AffineRepr; N]
Perform a batched conversion to affine representation on a sequence of projective points
at an amortized cost that should be practically as efficient as a single conversion.
Internally, implementors should rely upon
InvertBatch
.Source§impl<C> Clone for ProjectivePoint<C>
impl<C> Clone for ProjectivePoint<C>
Source§fn clone(&self) -> ProjectivePoint<C>
fn clone(&self) -> ProjectivePoint<C>
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<C> CofactorGroup for ProjectivePoint<C>where
ProjectivePoint<C>: Double,
C: PrimeCurveParams,
GenericArray<u8, <C as Curve>::FieldBytesSize>: Copy,
<C as Curve>::FieldBytesSize: ModulusSize,
GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>: Copy,
<<<C as Curve>::FieldBytesSize as ModulusSize>::UncompressedPointSize as ArrayLength<u8>>::ArrayType: Copy,
impl<C> CofactorGroup for ProjectivePoint<C>where
ProjectivePoint<C>: Double,
C: PrimeCurveParams,
GenericArray<u8, <C as Curve>::FieldBytesSize>: Copy,
<C as Curve>::FieldBytesSize: ModulusSize,
GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>: Copy,
<<<C as Curve>::FieldBytesSize as ModulusSize>::UncompressedPointSize as ArrayLength<u8>>::ArrayType: Copy,
Source§type Subgroup = ProjectivePoint<C>
type Subgroup = ProjectivePoint<C>
The large prime-order subgroup in which cryptographic operations are performed.
If
Self
implements PrimeGroup
, then Self::Subgroup
may be Self
.Source§fn clear_cofactor(&self) -> <ProjectivePoint<C> as CofactorGroup>::Subgroup
fn clear_cofactor(&self) -> <ProjectivePoint<C> as CofactorGroup>::Subgroup
Maps
self
to the prime-order subgroup by multiplying this element by some
k
-multiple of the cofactor. Read moreSource§fn into_subgroup(self) -> CtOption<ProjectivePoint<C>>
fn into_subgroup(self) -> CtOption<ProjectivePoint<C>>
Returns
self
if it is contained in the prime-order subgroup. Read moreSource§fn is_torsion_free(&self) -> Choice
fn is_torsion_free(&self) -> Choice
Determines if this element is “torsion free”, i.e., is contained in the
prime-order subgroup. Read more
Source§fn is_small_order(&self) -> Choice
fn is_small_order(&self) -> Choice
Determines if this element is of small order. Read more
Source§impl<C> ConditionallySelectable for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> ConditionallySelectable for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn conditional_select(
a: &ProjectivePoint<C>,
b: &ProjectivePoint<C>,
choice: Choice,
) -> ProjectivePoint<C>
fn conditional_select( a: &ProjectivePoint<C>, b: &ProjectivePoint<C>, choice: Choice, ) -> ProjectivePoint<C>
Source§fn conditional_assign(&mut self, other: &Self, choice: Choice)
fn conditional_assign(&mut self, other: &Self, choice: Choice)
Source§fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)
fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)
Conditionally swap
self
and other
if choice == 1
; otherwise,
reassign both unto themselves. Read moreSource§impl<C> ConstantTimeEq for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> ConstantTimeEq for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§impl<C> Curve for ProjectivePoint<C>
impl<C> Curve for ProjectivePoint<C>
Source§type AffineRepr = AffinePoint<C>
type AffineRepr = AffinePoint<C>
The affine representation for this elliptic curve.
Source§fn to_affine(&self) -> AffinePoint<C>
fn to_affine(&self) -> AffinePoint<C>
Converts this element into its affine representation.
Source§fn batch_normalize(p: &[Self], q: &mut [Self::AffineRepr])
fn batch_normalize(p: &[Self], q: &mut [Self::AffineRepr])
Converts a batch of projective elements into affine elements. This function will
panic if
p.len() != q.len()
.Source§impl<C> Debug for ProjectivePoint<C>
impl<C> Debug for ProjectivePoint<C>
Source§impl<C> Default for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> Default for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn default() -> ProjectivePoint<C>
fn default() -> ProjectivePoint<C>
Returns the “default value” for a type. Read more
Source§impl<C> Double for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> Double for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn double(&self) -> ProjectivePoint<C>
fn double(&self) -> ProjectivePoint<C>
Double this point.
Source§impl<C> From<&AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> From<&AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn from(p: &AffinePoint<C>) -> ProjectivePoint<C>
fn from(p: &AffinePoint<C>) -> ProjectivePoint<C>
Converts to this type from the input type.
Source§impl<C> From<&PublicKey<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> From<&PublicKey<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn from(public_key: &PublicKey<C>) -> ProjectivePoint<C>
fn from(public_key: &PublicKey<C>) -> ProjectivePoint<C>
Converts to this type from the input type.
Source§impl<C> From<AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> From<AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn from(p: AffinePoint<C>) -> ProjectivePoint<C>
fn from(p: AffinePoint<C>) -> ProjectivePoint<C>
Converts to this type from the input type.
Source§impl<C> From<PublicKey<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> From<PublicKey<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn from(public_key: PublicKey<C>) -> ProjectivePoint<C>
fn from(public_key: PublicKey<C>) -> ProjectivePoint<C>
Converts to this type from the input type.
Source§impl<C> FromEncodedPoint<C> for ProjectivePoint<C>where
C: PrimeCurveParams,
GenericArray<u8, <C as Curve>::FieldBytesSize>: Copy,
<C as Curve>::FieldBytesSize: ModulusSize,
GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>: Copy,
impl<C> FromEncodedPoint<C> for ProjectivePoint<C>where
C: PrimeCurveParams,
GenericArray<u8, <C as Curve>::FieldBytesSize>: Copy,
<C as Curve>::FieldBytesSize: ModulusSize,
GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>: Copy,
Source§fn from_encoded_point(
p: &EncodedPoint<<C as Curve>::FieldBytesSize>,
) -> CtOption<ProjectivePoint<C>>
fn from_encoded_point( p: &EncodedPoint<<C as Curve>::FieldBytesSize>, ) -> CtOption<ProjectivePoint<C>>
Deserialize the type this trait is impl’d on from an
EncodedPoint
.Source§impl<C> Group for ProjectivePoint<C>
impl<C> Group for ProjectivePoint<C>
Source§type Scalar = <C as CurveArithmetic>::Scalar
type Scalar = <C as CurveArithmetic>::Scalar
Scalars modulo the order of this group’s scalar field.
Source§fn random(rng: impl RngCore) -> ProjectivePoint<C>
fn random(rng: impl RngCore) -> ProjectivePoint<C>
Returns an element chosen uniformly at random from the non-identity elements of
this group. Read more
Source§fn identity() -> ProjectivePoint<C>
fn identity() -> ProjectivePoint<C>
Returns the additive identity, also known as the “neutral element”.
Source§fn generator() -> ProjectivePoint<C>
fn generator() -> ProjectivePoint<C>
Returns a fixed generator of the prime-order subgroup.
Source§fn is_identity(&self) -> Choice
fn is_identity(&self) -> Choice
Determines if this point is the identity.
Source§fn double(&self) -> ProjectivePoint<C>
fn double(&self) -> ProjectivePoint<C>
Doubles this element.
Source§impl<C> GroupEncoding for ProjectivePoint<C>where
C: PrimeCurveParams,
GenericArray<u8, <C as Curve>::FieldBytesSize>: Copy,
<C as Curve>::FieldBytesSize: ModulusSize,
GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>: Copy,
<<<C as Curve>::FieldBytesSize as ModulusSize>::UncompressedPointSize as ArrayLength<u8>>::ArrayType: Copy,
impl<C> GroupEncoding for ProjectivePoint<C>where
C: PrimeCurveParams,
GenericArray<u8, <C as Curve>::FieldBytesSize>: Copy,
<C as Curve>::FieldBytesSize: ModulusSize,
GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>: Copy,
<<<C as Curve>::FieldBytesSize as ModulusSize>::UncompressedPointSize as ArrayLength<u8>>::ArrayType: Copy,
Source§type Repr = GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>
type Repr = GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>
The encoding of group elements. Read more
Source§fn from_bytes(
bytes: &<ProjectivePoint<C> as GroupEncoding>::Repr,
) -> CtOption<ProjectivePoint<C>>
fn from_bytes( bytes: &<ProjectivePoint<C> as GroupEncoding>::Repr, ) -> CtOption<ProjectivePoint<C>>
Attempts to deserialize a group element from its encoding.
Source§fn from_bytes_unchecked(
bytes: &<ProjectivePoint<C> as GroupEncoding>::Repr,
) -> CtOption<ProjectivePoint<C>>
fn from_bytes_unchecked( bytes: &<ProjectivePoint<C> as GroupEncoding>::Repr, ) -> CtOption<ProjectivePoint<C>>
Attempts to deserialize a group element, not checking if the element is valid. Read more
Source§fn to_bytes(&self) -> <ProjectivePoint<C> as GroupEncoding>::Repr
fn to_bytes(&self) -> <ProjectivePoint<C> as GroupEncoding>::Repr
Converts this element into its byte encoding. This may or may not support
encoding the identity.
Source§impl<C> LinearCombination for ProjectivePoint<C>
impl<C> LinearCombination for ProjectivePoint<C>
Source§impl<C, S> Mul<S> for ProjectivePoint<C>
impl<C, S> Mul<S> for ProjectivePoint<C>
Source§type Output = ProjectivePoint<C>
type Output = ProjectivePoint<C>
The resulting type after applying the
*
operator.Source§fn mul(self, scalar: S) -> ProjectivePoint<C>
fn mul(self, scalar: S) -> ProjectivePoint<C>
Performs the
*
operation. Read moreSource§impl<C, S> MulAssign<S> for ProjectivePoint<C>
impl<C, S> MulAssign<S> for ProjectivePoint<C>
Source§fn mul_assign(&mut self, scalar: S)
fn mul_assign(&mut self, scalar: S)
Performs the
*=
operation. Read moreSource§impl<C> MulByGenerator for ProjectivePoint<C>
impl<C> MulByGenerator for ProjectivePoint<C>
Source§fn mul_by_generator(
scalar: &<ProjectivePoint<C> as Group>::Scalar,
) -> ProjectivePoint<C>
fn mul_by_generator( scalar: &<ProjectivePoint<C> as Group>::Scalar, ) -> ProjectivePoint<C>
Multiply by the generator of the prime-order subgroup.
Source§impl<C> Neg for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> Neg for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§type Output = ProjectivePoint<C>
type Output = ProjectivePoint<C>
The resulting type after applying the
-
operator.Source§fn neg(self) -> ProjectivePoint<C>
fn neg(self) -> ProjectivePoint<C>
Performs the unary
-
operation. Read moreSource§impl<C> PartialEq for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> PartialEq for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§impl<C> PrimeCurve for ProjectivePoint<C>where
ProjectivePoint<C>: Double,
C: PrimeCurveParams,
GenericArray<u8, <C as Curve>::FieldBytesSize>: Copy,
<C as Curve>::FieldBytesSize: ModulusSize,
GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>: Copy,
<<<C as Curve>::FieldBytesSize as ModulusSize>::UncompressedPointSize as ArrayLength<u8>>::ArrayType: Copy,
impl<C> PrimeCurve for ProjectivePoint<C>where
ProjectivePoint<C>: Double,
C: PrimeCurveParams,
GenericArray<u8, <C as Curve>::FieldBytesSize>: Copy,
<C as Curve>::FieldBytesSize: ModulusSize,
GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>: Copy,
<<<C as Curve>::FieldBytesSize as ModulusSize>::UncompressedPointSize as ArrayLength<u8>>::ArrayType: Copy,
type Affine = AffinePoint<C>
Source§impl<C> Sub<&AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> Sub<&AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§type Output = ProjectivePoint<C>
type Output = ProjectivePoint<C>
The resulting type after applying the
-
operator.Source§fn sub(self, other: &AffinePoint<C>) -> ProjectivePoint<C>
fn sub(self, other: &AffinePoint<C>) -> ProjectivePoint<C>
Performs the
-
operation. Read moreSource§impl<C> Sub<&ProjectivePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> Sub<&ProjectivePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§type Output = ProjectivePoint<C>
type Output = ProjectivePoint<C>
The resulting type after applying the
-
operator.Source§fn sub(self, other: &ProjectivePoint<C>) -> ProjectivePoint<C>
fn sub(self, other: &ProjectivePoint<C>) -> ProjectivePoint<C>
Performs the
-
operation. Read moreSource§impl<C> Sub<AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> Sub<AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§type Output = ProjectivePoint<C>
type Output = ProjectivePoint<C>
The resulting type after applying the
-
operator.Source§fn sub(self, other: AffinePoint<C>) -> ProjectivePoint<C>
fn sub(self, other: AffinePoint<C>) -> ProjectivePoint<C>
Performs the
-
operation. Read moreSource§impl<C> Sub for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> Sub for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§type Output = ProjectivePoint<C>
type Output = ProjectivePoint<C>
The resulting type after applying the
-
operator.Source§fn sub(self, other: ProjectivePoint<C>) -> ProjectivePoint<C>
fn sub(self, other: ProjectivePoint<C>) -> ProjectivePoint<C>
Performs the
-
operation. Read moreSource§impl<C> SubAssign<&AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> SubAssign<&AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn sub_assign(&mut self, rhs: &AffinePoint<C>)
fn sub_assign(&mut self, rhs: &AffinePoint<C>)
Performs the
-=
operation. Read moreSource§impl<C> SubAssign<&ProjectivePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> SubAssign<&ProjectivePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn sub_assign(&mut self, rhs: &ProjectivePoint<C>)
fn sub_assign(&mut self, rhs: &ProjectivePoint<C>)
Performs the
-=
operation. Read moreSource§impl<C> SubAssign<AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> SubAssign<AffinePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn sub_assign(&mut self, rhs: AffinePoint<C>)
fn sub_assign(&mut self, rhs: AffinePoint<C>)
Performs the
-=
operation. Read moreSource§impl<C> SubAssign for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> SubAssign for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn sub_assign(&mut self, rhs: ProjectivePoint<C>)
fn sub_assign(&mut self, rhs: ProjectivePoint<C>)
Performs the
-=
operation. Read moreSource§impl<'a, C> Sum<&'a ProjectivePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<'a, C> Sum<&'a ProjectivePoint<C>> for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn sum<I>(iter: I) -> ProjectivePoint<C>where
I: Iterator<Item = &'a ProjectivePoint<C>>,
fn sum<I>(iter: I) -> ProjectivePoint<C>where
I: Iterator<Item = &'a ProjectivePoint<C>>,
Takes an iterator and generates
Self
from the elements by “summing up”
the items.Source§impl<C> Sum for ProjectivePoint<C>where
C: PrimeCurveParams,
impl<C> Sum for ProjectivePoint<C>where
C: PrimeCurveParams,
Source§fn sum<I>(iter: I) -> ProjectivePoint<C>where
I: Iterator<Item = ProjectivePoint<C>>,
fn sum<I>(iter: I) -> ProjectivePoint<C>where
I: Iterator<Item = ProjectivePoint<C>>,
Takes an iterator and generates
Self
from the elements by “summing up”
the items.Source§impl<C> ToEncodedPoint<C> for ProjectivePoint<C>where
C: PrimeCurveParams,
<C as Curve>::FieldBytesSize: ModulusSize,
GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>: Copy,
<<<C as Curve>::FieldBytesSize as ModulusSize>::UncompressedPointSize as ArrayLength<u8>>::ArrayType: Copy,
impl<C> ToEncodedPoint<C> for ProjectivePoint<C>where
C: PrimeCurveParams,
<C as Curve>::FieldBytesSize: ModulusSize,
GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>: Copy,
<<<C as Curve>::FieldBytesSize as ModulusSize>::UncompressedPointSize as ArrayLength<u8>>::ArrayType: Copy,
Source§fn to_encoded_point(
&self,
compress: bool,
) -> EncodedPoint<<C as Curve>::FieldBytesSize>
fn to_encoded_point( &self, compress: bool, ) -> EncodedPoint<<C as Curve>::FieldBytesSize>
Serialize this value as a SEC1
EncodedPoint
, optionally applying
point compression.