Type Alias AffinePoint

Source
pub type AffinePoint = AffinePoint<NistP256>;
Expand description

Elliptic curve point in affine coordinates.

Aliased Type§

struct AffinePoint { /* private fields */ }

Implementations

Source§

impl<C> AffinePoint<C>

Source

pub const IDENTITY: AffinePoint<C>

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

Source

pub const GENERATOR: AffinePoint<C>

Base point of the curve.

Source

pub fn is_identity(&self) -> Choice

Is this point the point at infinity?

Trait Implementations§

Source§

impl VerifyPrimitive<NistP256> for AffinePoint

Source§

fn verify_prehashed( &self, z: &GenericArray<u8, <C as Curve>::FieldBytesSize>, sig: &Signature<C>, ) -> Result<(), Error>

Verify the prehashed message against the provided ECDSA signature. Read more
Source§

fn verify_digest<D>( &self, msg_digest: D, sig: &Signature<C>, ) -> Result<(), Error>
where D: FixedOutput<OutputSize = <C as Curve>::FieldBytesSize>,

Verify message digest against the provided signature.
Source§

impl<C> AffineCoordinates for AffinePoint<C>

Source§

type FieldRepr = GenericArray<u8, <C as Curve>::FieldBytesSize>

Field element representation.
Source§

fn x(&self) -> GenericArray<u8, <C as Curve>::FieldBytesSize>

Get the affine x-coordinate as a serialized field element.
Source§

fn y_is_odd(&self) -> Choice

Is the affine y-coordinate odd?
Source§

impl<C> Clone for AffinePoint<C>

Source§

fn clone(&self) -> AffinePoint<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> ConditionallySelectable for AffinePoint<C>

Source§

fn conditional_select( a: &AffinePoint<C>, b: &AffinePoint<C>, choice: Choice, ) -> AffinePoint<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 AffinePoint<C>

Source§

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

Determine if two items are equal. Read more
Source§

impl<C> Debug for AffinePoint<C>

Source§

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

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

impl<C> DecompactPoint<C> for AffinePoint<C>

Source§

fn decompact( x_bytes: &GenericArray<u8, <C as Curve>::FieldBytesSize>, ) -> CtOption<AffinePoint<C>>

Attempt to decompact an elliptic curve point
Source§

impl<C> DecompressPoint<C> for AffinePoint<C>

Source§

fn decompress( x_bytes: &GenericArray<u8, <C as Curve>::FieldBytesSize>, y_is_odd: Choice, ) -> CtOption<AffinePoint<C>>

Attempt to decompress an elliptic curve point.
Source§

impl<C> Default for AffinePoint<C>

Source§

fn default() -> AffinePoint<C>

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

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

Source§

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

Converts to this type from the input type.
Source§

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

Source§

fn from(public_key: &PublicKey<C>) -> AffinePoint<C>

Converts to this type from the input type.
Source§

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

Source§

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

Converts to this type from the input type.
Source§

impl<C> From<PublicKey<C>> for AffinePoint<C>

Source§

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

Converts to this type from the input type.
Source§

impl<C> FromEncodedPoint<C> for AffinePoint<C>

Source§

fn from_encoded_point( encoded_point: &EncodedPoint<<C as Curve>::FieldBytesSize>, ) -> CtOption<AffinePoint<C>>

Attempts to parse the given EncodedPoint as an SEC1-encoded AffinePoint.

§Returns

None value if encoded_point is not on the secp384r1 curve.

Source§

impl<C> GroupEncoding for AffinePoint<C>

Source§

fn from_bytes( bytes: &<AffinePoint<C> as GroupEncoding>::Repr, ) -> CtOption<AffinePoint<C>>

NOTE: not constant-time with respect to identity point

Source§

type Repr = GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>

The encoding of group elements. Read more
Source§

fn from_bytes_unchecked( bytes: &<AffinePoint<C> as GroupEncoding>::Repr, ) -> CtOption<AffinePoint<C>>

Attempts to deserialize a group element, not checking if the element is valid. Read more
Source§

fn to_bytes(&self) -> <AffinePoint<C> as GroupEncoding>::Repr

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

impl<C, S> Mul<S> for AffinePoint<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> Neg for AffinePoint<C>

Source§

type Output = AffinePoint<C>

The resulting type after applying the - operator.
Source§

fn neg(self) -> AffinePoint<C>

Performs the unary - operation. Read more
Source§

impl<C> PartialEq for AffinePoint<C>

Source§

fn eq(&self, other: &AffinePoint<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> PrimeCurveAffine for AffinePoint<C>

Source§

type Curve = ProjectivePoint<C>

Source§

type Scalar = <C as CurveArithmetic>::Scalar

Source§

fn identity() -> AffinePoint<C>

Returns the additive identity.
Source§

fn generator() -> AffinePoint<C>

Returns a fixed generator of unknown exponent.
Source§

fn is_identity(&self) -> Choice

Determines if this point represents the point at infinity; the additive identity.
Source§

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

Converts this element to its curve representation.
Source§

impl<C> ToCompactEncodedPoint<C> for AffinePoint<C>

Source§

fn to_compact_encoded_point( &self, ) -> CtOption<EncodedPoint<<C as Curve>::FieldBytesSize>>

Serialize this value as a SEC1 compact EncodedPoint

Source§

impl<C> ToEncodedPoint<C> for AffinePoint<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> TryFrom<&EncodedPoint<<C as Curve>::FieldBytesSize>> for AffinePoint<C>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( point: &EncodedPoint<<C as Curve>::FieldBytesSize>, ) -> Result<AffinePoint<C>, Error>

Performs the conversion.
Source§

impl<C> TryFrom<EncodedPoint<<C as Curve>::FieldBytesSize>> for AffinePoint<C>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( point: EncodedPoint<<C as Curve>::FieldBytesSize>, ) -> Result<AffinePoint<C>, Error>

Performs the conversion.
Source§

impl<C> Copy for AffinePoint<C>

Source§

impl<C> DefaultIsZeroes for AffinePoint<C>

Source§

impl<C> Eq for AffinePoint<C>