Enum signatory::ecdsa::PublicKey[][src]

pub enum PublicKey<C: WeierstrassCurve> {
    Compressed(CompressedCurvePoint<C>),
    Uncompressed(UncompressedCurvePoint<C>),
}

ECDSA public keys

Variants

Compressed Weierstrass elliptic curve point

Uncompressed Weierstrass elliptic curve point

Methods

impl<C> PublicKey<C> where
    C: WeierstrassCurve
[src]

Create an ECDSA public key from an elliptic curve point (compressed or uncompressed) encoded using the Octet-String-to-Elliptic-Curve-Point algorithm described in SEC 1: Elliptic Curve Cryptography (Version 2.0) section 2.3.4 (page 11).

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

Create an ECDSA public key from an compressed elliptic curve point encoded using the Octet-String-to-Elliptic-Curve-Point algorithm described in SEC 1: Elliptic Curve Cryptography (Version 2.0) section 2.3.4 (page 11).

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

Create an ECDSA public key from a raw uncompressed point serialized as a bytestring, without a 0x04-byte tag.

This will be twice the modulus size, or 1-byte smaller than the Octet-String-to-Elliptic-Curve-Point encoding i.e with the leading 0x04 byte in that encoding removed.

Important traits for &'a [u8]

Obtain public key as a byte array reference

Trait Implementations

impl<C: Clone + WeierstrassCurve> Clone for PublicKey<C>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<C: PartialEq + WeierstrassCurve> PartialEq for PublicKey<C>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<C: WeierstrassCurve> AsRef<[u8]> for PublicKey<C>
[src]

Important traits for &'a [u8]

Performs the conversion.

impl<C: WeierstrassCurve> Debug for PublicKey<C>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations