Type Alias PublicKey

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

NIST P-256 public key.

Aliased Type§

struct PublicKey { /* private fields */ }

Implementations

Source§

impl<C> PublicKey<C>
where C: CurveArithmetic,

Source

pub fn from_affine( point: <C as CurveArithmetic>::AffinePoint, ) -> Result<PublicKey<C>, Error>

Convert an AffinePoint into a PublicKey

Source

pub fn from_secret_scalar(scalar: &NonZeroScalar<C>) -> PublicKey<C>

Compute a PublicKey from a secret NonZeroScalar value (i.e. a secret key represented as a raw scalar value)

Source

pub fn from_sec1_bytes(bytes: &[u8]) -> Result<PublicKey<C>, Error>

Decode PublicKey (compressed or uncompressed) from the Elliptic-Curve-Point-to-Octet-String encoding described in SEC 1: Elliptic Curve Cryptography (Version 2.0) section 2.3.3 (page 10).

http://www.secg.org/sec1-v2.pdf

Source

pub fn as_affine(&self) -> &<C as CurveArithmetic>::AffinePoint

Borrow the inner AffinePoint from this PublicKey.

In ECC, public keys are elliptic curve points.

Source

pub fn to_projective(&self) -> <C as CurveArithmetic>::ProjectivePoint

Convert this PublicKey to a ProjectivePoint for the given curve

Source

pub fn to_nonidentity(&self) -> NonIdentity<<C as CurveArithmetic>::AffinePoint>

Convert this PublicKey to a NonIdentity of the inner AffinePoint

Trait Implementations

Source§

impl<C> AsRef<<C as CurveArithmetic>::AffinePoint> for PublicKey<C>
where C: CurveArithmetic,

Source§

fn as_ref(&self) -> &<C as CurveArithmetic>::AffinePoint

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<C> Clone for PublicKey<C>

Source§

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

Source§

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

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

impl<C, P> From<&NonIdentity<P>> for PublicKey<C>

Source§

fn from(value: &NonIdentity<P>) -> PublicKey<C>

Converts to this type from the input type.
Source§

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

Source§

fn from(verifying_key: &VerifyingKey<C>) -> PublicKey<C>

Converts to this type from the input type.
Source§

impl<C, P> From<NonIdentity<P>> for PublicKey<C>

Source§

fn from(value: NonIdentity<P>) -> PublicKey<C>

Converts to this type from the input type.
Source§

impl<C> From<VerifyingKey<C>> for PublicKey<C>

Source§

fn from(verifying_key: VerifyingKey<C>) -> PublicKey<C>

Converts to this type from the input type.
Source§

impl<C> FromEncodedPoint<C> for PublicKey<C>

Source§

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

Initialize PublicKey from an EncodedPoint

Source§

impl<C> Ord for PublicKey<C>

Source§

fn cmp(&self, other: &PublicKey<C>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<C> PartialEq for PublicKey<C>

Source§

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

Source§

fn partial_cmp(&self, other: &PublicKey<C>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<C> ToEncodedPoint<C> for PublicKey<C>

Source§

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

Serialize this PublicKey as a SEC1 EncodedPoint, optionally applying point compression

Source§

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

Source§

type Error = Error

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

fn try_from(affine_point: &AffinePoint<C>) -> Result<PublicKey<C>, Error>

Performs the conversion.
Source§

impl<C> TryFrom<&EncodedPoint<<C as Curve>::FieldBytesSize>> for PublicKey<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<PublicKey<C>, Error>

Performs the conversion.
Source§

impl<C> TryFrom<&GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>> for PublicKey<C>

Source§

type Error = Error

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

fn try_from( point: &GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>, ) -> Result<PublicKey<C>, Error>

Performs the conversion.
Source§

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

Source§

type Error = Error

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

fn try_from(point: &ProjectivePoint<C>) -> Result<PublicKey<C>, Error>

Performs the conversion.
Source§

impl<C> TryFrom<AffinePoint<C>> for PublicKey<C>

Source§

type Error = Error

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

fn try_from(affine_point: AffinePoint<C>) -> Result<PublicKey<C>, Error>

Performs the conversion.
Source§

impl<C> TryFrom<EncodedPoint<<C as Curve>::FieldBytesSize>> for PublicKey<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<PublicKey<C>, Error>

Performs the conversion.
Source§

impl<C> TryFrom<GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>> for PublicKey<C>

Source§

type Error = Error

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

fn try_from( point: GenericArray<u8, <<C as Curve>::FieldBytesSize as ModulusSize>::CompressedPointSize>, ) -> Result<PublicKey<C>, Error>

Performs the conversion.
Source§

impl<C> TryFrom<ProjectivePoint<C>> for PublicKey<C>

Source§

type Error = Error

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

fn try_from(point: ProjectivePoint<C>) -> Result<PublicKey<C>, Error>

Performs the conversion.
Source§

impl<C> Copy for PublicKey<C>
where C: CurveArithmetic,

Source§

impl<C> Eq for PublicKey<C>
where C: Eq + CurveArithmetic,

Source§

impl<C> StructuralPartialEq for PublicKey<C>
where C: CurveArithmetic,