[][src]Struct iop_keyvault::secp256k1::SecpPrivateKey

pub struct SecpPrivateKey(_);

Implementation of Secp256k1::PrivateKey

Implementations

impl SecpPrivateKey[src]

pub fn to_bytes(&self) -> Vec<u8>[src]

The private key serialized in a format that can be fed to from_bytes

pub fn from_bytes<D: AsRef<[u8]>>(bytes: D) -> Result<Self>[src]

Creates a public key from a byte slice possibly returned by the to_bytes method.

Error

If bytes is rejected by libsecp256k1::SecretKey::parse_slice

pub fn from_ark_passphrase(phrase: impl AsRef<str>) -> Result<Self>[src]

Most ARK wallets simply hash a passphrase into a private key.

pub fn to_wif(&self, version: &[u8; 1], usage: Bip178) -> String[src]

Serializes private key into wallet import format supported by many pre-HD wallets

pub fn from_wif(
    wif: &str,
    network: &dyn Network<Suite = Secp256k1>
) -> Result<(Self, Bip178)>
[src]

Deserializes private key from wallet import format supported by many pre-HD wallets

Trait Implementations

impl<'_, '_> Add<&'_ [u8]> for &'_ SecpPrivateKey[src]

type Output = Result<SecpPrivateKey>

The resulting type after applying the + operator.

impl Clone for SecpPrivateKey[src]

impl Debug for SecpPrivateKey[src]

impl Eq for SecpPrivateKey[src]

impl From<SecpPrivateKey> for MPrivateKey[src]

impl PartialEq<SecpPrivateKey> for SecpPrivateKey[src]

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 StructuralEq for SecpPrivateKey[src]

impl StructuralPartialEq for SecpPrivateKey[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>,