Type Alias ProjectivePoint

Source
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>

Source

pub const IDENTITY: ProjectivePoint<C>

Additive identity of the group a.k.a. the point at infinity.

Source

pub const GENERATOR: ProjectivePoint<C>

Base point of the curve.

Source

pub fn to_affine(&self) -> AffinePoint<C>

Returns the affine representation of this point, or None if it is the identity.

Source

pub fn neg(&self) -> ProjectivePoint<C>

Returns -self.

Source

pub fn add(&self, other: &ProjectivePoint<C>) -> ProjectivePoint<C>

Returns self + other.

Source

pub fn sub(&self, other: &ProjectivePoint<C>) -> ProjectivePoint<C>

Returns self - other.

Trait Implementations

Source§

impl<C> Add<&AffinePoint<C>> for ProjectivePoint<C>

Source§

type Output = ProjectivePoint<C>

The resulting type after applying the + operator.
Source§

fn add(self, other: &AffinePoint<C>) -> ProjectivePoint<C>

Performs the + operation. Read more
Source§

impl<C> Add<&ProjectivePoint<C>> for ProjectivePoint<C>

Source§

type Output = ProjectivePoint<C>

The resulting type after applying the + operator.
Source§

fn add(self, other: &ProjectivePoint<C>) -> ProjectivePoint<C>

Performs the + operation. Read more
Source§

impl<C> Add<AffinePoint<C>> for ProjectivePoint<C>

Source§

type Output = ProjectivePoint<C>

The resulting type after applying the + operator.
Source§

fn add(self, other: AffinePoint<C>) -> ProjectivePoint<C>

Performs the + operation. Read more
Source§

impl<C> Add for ProjectivePoint<C>

Source§

type Output = ProjectivePoint<C>

The resulting type after applying the + operator.
Source§

fn add(self, other: ProjectivePoint<C>) -> ProjectivePoint<C>

Performs the + operation. Read more
Source§

impl<C> AddAssign<&AffinePoint<C>> for ProjectivePoint<C>

Source§

fn add_assign(&mut self, rhs: &AffinePoint<C>)

Performs the += operation. Read more
Source§

impl<C> AddAssign<&ProjectivePoint<C>> for ProjectivePoint<C>

Source§

fn add_assign(&mut self, rhs: &ProjectivePoint<C>)

Performs the += operation. Read more
Source§

impl<C> AddAssign<AffinePoint<C>> for ProjectivePoint<C>

Source§

fn add_assign(&mut self, rhs: AffinePoint<C>)

Performs the += operation. Read more
Source§

impl<C> AddAssign for ProjectivePoint<C>

Source§

fn add_assign(&mut self, rhs: ProjectivePoint<C>)

Performs the += operation. Read more
Source§

impl<const N: usize, C> BatchNormalize<[ProjectivePoint<C>; N]> for ProjectivePoint<C>

Source§

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]

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>

Source§

fn clone(&self) -> ProjectivePoint<C>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<C> CofactorGroup for ProjectivePoint<C>

Source§

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

Maps self to the prime-order subgroup by multiplying this element by some k-multiple of the cofactor. Read more
Source§

fn into_subgroup(self) -> CtOption<ProjectivePoint<C>>

Returns self if it is contained in the prime-order subgroup. Read more
Source§

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

Determines if this element is of small order. Read more
Source§

impl<C> ConditionallySelectable for ProjectivePoint<C>

Source§

fn conditional_select( a: &ProjectivePoint<C>, b: &ProjectivePoint<C>, choice: Choice, ) -> ProjectivePoint<C>

Select a or b according to choice. Read more
Source§

fn conditional_assign(&mut self, other: &Self, choice: Choice)

Conditionally assign other to self, according to choice. Read more
Source§

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 more
Source§

impl<C> ConstantTimeEq for ProjectivePoint<C>

Source§

fn ct_eq(&self, other: &ProjectivePoint<C>) -> Choice

Determine if two items are equal. Read more
Source§

impl<C> Curve for ProjectivePoint<C>

Source§

type AffineRepr = AffinePoint<C>

The affine representation for this elliptic curve.
Source§

fn to_affine(&self) -> AffinePoint<C>

Converts this element into its affine representation.
Source§

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>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<C> Default for ProjectivePoint<C>

Source§

fn default() -> ProjectivePoint<C>

Returns the “default value” for a type. Read more
Source§

impl<C> Double for ProjectivePoint<C>

Source§

fn double(&self) -> ProjectivePoint<C>

Double this point.
Source§

impl<C> From<&AffinePoint<C>> for ProjectivePoint<C>

Source§

fn from(p: &AffinePoint<C>) -> ProjectivePoint<C>

Converts to this type from the input type.
Source§

impl<C> From<&PublicKey<C>> for ProjectivePoint<C>

Source§

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>

Source§

fn from(p: AffinePoint<C>) -> ProjectivePoint<C>

Converts to this type from the input type.
Source§

impl<C> From<PublicKey<C>> for ProjectivePoint<C>

Source§

fn from(public_key: PublicKey<C>) -> ProjectivePoint<C>

Converts to this type from the input type.
Source§

impl<C> FromEncodedPoint<C> for ProjectivePoint<C>

Source§

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>

Source§

type Scalar = <C as CurveArithmetic>::Scalar

Scalars modulo the order of this group’s scalar field.
Source§

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>

Returns the additive identity, also known as the “neutral element”.
Source§

fn generator() -> ProjectivePoint<C>

Returns a fixed generator of the prime-order subgroup.
Source§

fn is_identity(&self) -> Choice

Determines if this point is the identity.
Source§

fn double(&self) -> ProjectivePoint<C>

Doubles this element.
Source§

impl<C> GroupEncoding for ProjectivePoint<C>

Source§

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>>

Attempts to deserialize a group element from its encoding.
Source§

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

Converts this element into its byte encoding. This may or may not support encoding the identity.
Source§

impl<C> LinearCombination for ProjectivePoint<C>

Source§

fn lincomb(x: &Self, k: &Self::Scalar, y: &Self, l: &Self::Scalar) -> Self

Calculates x * k + y * l.
Source§

impl<C, S> Mul<S> for ProjectivePoint<C>

Source§

type Output = ProjectivePoint<C>

The resulting type after applying the * operator.
Source§

fn mul(self, scalar: S) -> ProjectivePoint<C>

Performs the * operation. Read more
Source§

impl<C, S> MulAssign<S> for ProjectivePoint<C>

Source§

fn mul_assign(&mut self, scalar: S)

Performs the *= operation. Read more
Source§

impl<C> MulByGenerator for ProjectivePoint<C>

Source§

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>

Source§

type Output = ProjectivePoint<C>

The resulting type after applying the - operator.
Source§

fn neg(self) -> ProjectivePoint<C>

Performs the unary - operation. Read more
Source§

impl<C> PartialEq for ProjectivePoint<C>

Source§

fn eq(&self, other: &ProjectivePoint<C>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<C> PrimeCurve for ProjectivePoint<C>

Source§

impl<C> Sub<&AffinePoint<C>> for ProjectivePoint<C>

Source§

type Output = ProjectivePoint<C>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &AffinePoint<C>) -> ProjectivePoint<C>

Performs the - operation. Read more
Source§

impl<C> Sub<&ProjectivePoint<C>> for ProjectivePoint<C>

Source§

type Output = ProjectivePoint<C>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &ProjectivePoint<C>) -> ProjectivePoint<C>

Performs the - operation. Read more
Source§

impl<C> Sub<AffinePoint<C>> for ProjectivePoint<C>

Source§

type Output = ProjectivePoint<C>

The resulting type after applying the - operator.
Source§

fn sub(self, other: AffinePoint<C>) -> ProjectivePoint<C>

Performs the - operation. Read more
Source§

impl<C> Sub for ProjectivePoint<C>

Source§

type Output = ProjectivePoint<C>

The resulting type after applying the - operator.
Source§

fn sub(self, other: ProjectivePoint<C>) -> ProjectivePoint<C>

Performs the - operation. Read more
Source§

impl<C> SubAssign<&AffinePoint<C>> for ProjectivePoint<C>

Source§

fn sub_assign(&mut self, rhs: &AffinePoint<C>)

Performs the -= operation. Read more
Source§

impl<C> SubAssign<&ProjectivePoint<C>> for ProjectivePoint<C>

Source§

fn sub_assign(&mut self, rhs: &ProjectivePoint<C>)

Performs the -= operation. Read more
Source§

impl<C> SubAssign<AffinePoint<C>> for ProjectivePoint<C>

Source§

fn sub_assign(&mut self, rhs: AffinePoint<C>)

Performs the -= operation. Read more
Source§

impl<C> SubAssign for ProjectivePoint<C>

Source§

fn sub_assign(&mut self, rhs: ProjectivePoint<C>)

Performs the -= operation. Read more
Source§

impl<'a, C> Sum<&'a ProjectivePoint<C>> for ProjectivePoint<C>

Source§

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>

Source§

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>

Source§

fn to_encoded_point( &self, compress: bool, ) -> EncodedPoint<<C as Curve>::FieldBytesSize>

Serialize this value as a SEC1 EncodedPoint, optionally applying point compression.
Source§

impl<C> Copy for ProjectivePoint<C>

Source§

impl<C> DefaultIsZeroes for ProjectivePoint<C>

Source§

impl<C> Eq for ProjectivePoint<C>

Source§

impl<C> PrimeGroup for ProjectivePoint<C>