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>where
C: PrimeCurveParams,
impl<C> AffinePoint<C>where
C: PrimeCurveParams,
Sourcepub const IDENTITY: AffinePoint<C>
pub const IDENTITY: AffinePoint<C>
Additive identity of the group a.k.a. the point at infinity.
Sourcepub const GENERATOR: AffinePoint<C>
pub const GENERATOR: AffinePoint<C>
Base point of the curve.
Sourcepub fn is_identity(&self) -> Choice
pub fn is_identity(&self) -> Choice
Is this point the point at infinity?
Trait Implementations§
Source§impl VerifyPrimitive<NistP256> for AffinePoint
impl VerifyPrimitive<NistP256> for AffinePoint
Source§fn verify_prehashed(
&self,
z: &GenericArray<u8, <C as Curve>::FieldBytesSize>,
sig: &Signature<C>,
) -> Result<(), Error>
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§impl<C> AffineCoordinates for AffinePoint<C>where
C: PrimeCurveParams,
impl<C> AffineCoordinates for AffinePoint<C>where
C: PrimeCurveParams,
Source§type FieldRepr = GenericArray<u8, <C as Curve>::FieldBytesSize>
type FieldRepr = GenericArray<u8, <C as Curve>::FieldBytesSize>
Field element representation.
Source§fn x(&self) -> GenericArray<u8, <C as Curve>::FieldBytesSize>
fn x(&self) -> GenericArray<u8, <C as Curve>::FieldBytesSize>
Get the affine x-coordinate as a serialized field element.
Source§impl<C> Clone for AffinePoint<C>
impl<C> Clone for AffinePoint<C>
Source§fn clone(&self) -> AffinePoint<C>
fn clone(&self) -> AffinePoint<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> ConditionallySelectable for AffinePoint<C>where
C: PrimeCurveParams,
impl<C> ConditionallySelectable for AffinePoint<C>where
C: PrimeCurveParams,
Source§fn conditional_select(
a: &AffinePoint<C>,
b: &AffinePoint<C>,
choice: Choice,
) -> AffinePoint<C>
fn conditional_select( a: &AffinePoint<C>, b: &AffinePoint<C>, choice: Choice, ) -> AffinePoint<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 AffinePoint<C>where
C: PrimeCurveParams,
impl<C> ConstantTimeEq for AffinePoint<C>where
C: PrimeCurveParams,
Source§impl<C> Debug for AffinePoint<C>
impl<C> Debug for AffinePoint<C>
Source§impl<C> DecompactPoint<C> for AffinePoint<C>
impl<C> DecompactPoint<C> for AffinePoint<C>
Source§fn decompact(
x_bytes: &GenericArray<u8, <C as Curve>::FieldBytesSize>,
) -> CtOption<AffinePoint<C>>
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>
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>>
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>where
C: PrimeCurveParams,
impl<C> Default for AffinePoint<C>where
C: PrimeCurveParams,
Source§fn default() -> AffinePoint<C>
fn default() -> AffinePoint<C>
Returns the “default value” for a type. Read more
Source§impl<C> From<&ProjectivePoint<C>> for AffinePoint<C>where
C: PrimeCurveParams,
impl<C> From<&ProjectivePoint<C>> for AffinePoint<C>where
C: PrimeCurveParams,
Source§fn from(p: &ProjectivePoint<C>) -> AffinePoint<C>
fn from(p: &ProjectivePoint<C>) -> AffinePoint<C>
Converts to this type from the input type.
Source§impl<C> From<&PublicKey<C>> for AffinePoint<C>where
C: PrimeCurveParams,
impl<C> From<&PublicKey<C>> for AffinePoint<C>where
C: PrimeCurveParams,
Source§fn from(public_key: &PublicKey<C>) -> AffinePoint<C>
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>where
C: PrimeCurveParams,
impl<C> From<ProjectivePoint<C>> for AffinePoint<C>where
C: PrimeCurveParams,
Source§fn from(p: ProjectivePoint<C>) -> AffinePoint<C>
fn from(p: ProjectivePoint<C>) -> AffinePoint<C>
Converts to this type from the input type.
Source§impl<C> From<PublicKey<C>> for AffinePoint<C>where
C: PrimeCurveParams,
impl<C> From<PublicKey<C>> for AffinePoint<C>where
C: PrimeCurveParams,
Source§fn from(public_key: PublicKey<C>) -> AffinePoint<C>
fn from(public_key: PublicKey<C>) -> AffinePoint<C>
Converts to this type from the input type.
Source§impl<C> FromEncodedPoint<C> for AffinePoint<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 AffinePoint<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(
encoded_point: &EncodedPoint<<C as Curve>::FieldBytesSize>,
) -> CtOption<AffinePoint<C>>
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>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 AffinePoint<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§fn from_bytes(
bytes: &<AffinePoint<C> as GroupEncoding>::Repr,
) -> CtOption<AffinePoint<C>>
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>
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>>
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
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>
impl<C, S> Mul<S> for AffinePoint<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> Neg for AffinePoint<C>where
C: PrimeCurveParams,
impl<C> Neg for AffinePoint<C>where
C: PrimeCurveParams,
Source§type Output = AffinePoint<C>
type Output = AffinePoint<C>
The resulting type after applying the
-
operator.Source§fn neg(self) -> AffinePoint<C>
fn neg(self) -> AffinePoint<C>
Performs the unary
-
operation. Read moreSource§impl<C> PartialEq for AffinePoint<C>where
C: PrimeCurveParams,
impl<C> PartialEq for AffinePoint<C>where
C: PrimeCurveParams,
Source§impl<C> PrimeCurveAffine for AffinePoint<C>where
C: PrimeCurveParams,
GenericArray<u8, <C as Curve>::FieldBytesSize>: Copy,
<C as Curve>::FieldBytesSize: ModulusSize,
ProjectivePoint<C>: Double,
GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>: Copy,
<<<C as Curve>::FieldBytesSize as ModulusSize>::UncompressedPointSize as ArrayLength<u8>>::ArrayType: Copy,
impl<C> PrimeCurveAffine for AffinePoint<C>where
C: PrimeCurveParams,
GenericArray<u8, <C as Curve>::FieldBytesSize>: Copy,
<C as Curve>::FieldBytesSize: ModulusSize,
ProjectivePoint<C>: Double,
GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>: Copy,
<<<C as Curve>::FieldBytesSize as ModulusSize>::UncompressedPointSize as ArrayLength<u8>>::ArrayType: Copy,
type Curve = ProjectivePoint<C>
type Scalar = <C as CurveArithmetic>::Scalar
Source§fn identity() -> AffinePoint<C>
fn identity() -> AffinePoint<C>
Returns the additive identity.
Source§fn generator() -> AffinePoint<C>
fn generator() -> AffinePoint<C>
Returns a fixed generator of unknown exponent.
Source§fn is_identity(&self) -> Choice
fn is_identity(&self) -> Choice
Determines if this point represents the point at infinity; the
additive identity.
Source§fn to_curve(&self) -> ProjectivePoint<C>
fn to_curve(&self) -> ProjectivePoint<C>
Converts this element to its curve representation.
Source§impl<C> ToCompactEncodedPoint<C> for AffinePoint<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> ToCompactEncodedPoint<C> for AffinePoint<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_compact_encoded_point(
&self,
) -> CtOption<EncodedPoint<<C as Curve>::FieldBytesSize>>
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>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 AffinePoint<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.Source§impl<C> TryFrom<&EncodedPoint<<C as Curve>::FieldBytesSize>> for AffinePoint<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> TryFrom<&EncodedPoint<<C as Curve>::FieldBytesSize>> for AffinePoint<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 try_from(
point: &EncodedPoint<<C as Curve>::FieldBytesSize>,
) -> Result<AffinePoint<C>, Error>
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>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> TryFrom<EncodedPoint<<C as Curve>::FieldBytesSize>> for AffinePoint<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 try_from(
point: EncodedPoint<<C as Curve>::FieldBytesSize>,
) -> Result<AffinePoint<C>, Error>
fn try_from( point: EncodedPoint<<C as Curve>::FieldBytesSize>, ) -> Result<AffinePoint<C>, Error>
Performs the conversion.