[][src]Struct k256::Secp256k1

pub struct Secp256k1;

K-256 (secp256k1) elliptic curve.

Specified in Certicom's SECG in "SEC 2: Recommended Elliptic Curve Domain Parameters":

https://www.secg.org/sec2-v2.pdf

The curve's equation is y² = x³ + 7 over a ~256-bit prime field.

It's primarily notable for usage in Bitcoin and other cryptocurrencies, particularly in conjunction with the Elliptic Curve Digital Signature Algorithm (ECDSA).

Trait Implementations

impl Arithmetic for Secp256k1[src]

type Scalar = Scalar

Scalar type for a given curve

type AffinePoint = AffinePoint

Affine point type for a given curve

impl Clone for Secp256k1[src]

impl Curve for Secp256k1[src]

type ElementSize = U32

256-bit (32-byte)

impl Curve for Secp256k1[src]

const COMPRESS_POINTS: bool[src]

secp256k1 points are typically compressed.

impl Debug for Secp256k1[src]

impl Default for Secp256k1[src]

impl DigestPrimitive for Secp256k1[src]

type Digest = Sha256

Preferred digest to use when computing ECDSA signatures for this elliptic curve. This should be a member of the SHA-2 family. Read more

impl Eq for Secp256k1[src]

impl FromPublicKey<Secp256k1> for AffinePoint[src]

fn from_public_key(pubkey: &PublicKey) -> CtOption<Self>[src]

Attempts to parse the given PublicKey as an SEC-1-encoded AffinePoint.

Returns

None value if pubkey is not on the secp256k1 curve.

impl Identifier for Secp256k1[src]

impl Ord for Secp256k1[src]

impl PartialEq<Secp256k1> for Secp256k1[src]

impl PartialOrd<Secp256k1> for Secp256k1[src]

impl RecoverableSignPrimitive<Secp256k1> for Scalar[src]

type RecoverableSignature = Signature

Type for recoverable signatures

impl StructuralEq for Secp256k1[src]

impl StructuralPartialEq for Secp256k1[src]

impl VerifyPrimitive<Secp256k1> for AffinePoint[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.