Struct iop_keyvault::secp256k1::Secp256k1[][src]

pub struct Secp256k1;

This elliptic curve cryptography implements both the AsymmetricCrypto and KeyDerivationCrypto traits so for BTC, ETH and IOP as examples.

Trait Implementations

impl AsymmetricCrypto for Secp256k1[src]

type KeyId = SecpKeyId

The ID (also called fingerprint or address in some literature) of the public key. See PublicKey::key_id for more details. Read more

type PublicKey = SecpPublicKey

See PublicKey for more details. Read more

type PrivateKey = SecpPrivateKey

See PrivateKey for more details. Read more

type Signature = SecpSignature

The signature of a given message with a given private key. Its size and representation is up to the implementation. Read more

impl Clone for Secp256k1[src]

impl Debug for Secp256k1[src]

impl ExtendedPrivateKey<Secp256k1> for SecpExtPrivateKey[src]

impl ExtendedPublicKey<Secp256k1> for SecpExtPublicKey[src]

impl KeyDerivationCrypto for Secp256k1[src]

type ExtendedPrivateKey = SecpExtPrivateKey

See ExtendedPrivateKey for more details. Read more

type ExtendedPublicKey = SecpExtPublicKey

See ExtendedPublicKey for more details. Read more

impl PrivateKey<Secp256k1> for SecpPrivateKey[src]

fn sign<D: AsRef<[u8]>>(&self, data: D) -> SecpSignature[src]

Panics

There is a 2^-256 chance this message cannot be signed by this key. The C implementation in bitcoin does not fail, but this pure rust version does. Then we panic.

impl PublicKey<Secp256k1> for SecpPublicKey[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,