Skip to main content

PrivateKey

Struct PrivateKey 

Source
pub struct PrivateKey {
    pub compressed: bool,
    pub network: NetworkKind,
    pub inner: SecretKey,
}
Expand description

A Bitcoin ECDSA private key

Fields§

§compressed: bool

Whether this private key should be serialized as compressed

§network: NetworkKind

The network kind on which this key should be used

§inner: SecretKey

The actual ECDSA key

Implementations§

Source§

impl PrivateKey

Source

pub fn generate(network: impl Into<NetworkKind>) -> PrivateKey

Constructs new compressed ECDSA private key using the secp256k1 algorithm and a secure random number generator.

Source

pub fn new(key: SecretKey, network: impl Into<NetworkKind>) -> PrivateKey

Constructs compressed ECDSA private key from the provided generic Secp256k1 private key and the specified network

Source

pub fn new_uncompressed( key: SecretKey, network: impl Into<NetworkKind>, ) -> PrivateKey

Constructs uncompressed (legacy) ECDSA private key from the provided generic Secp256k1 private key and the specified network

Source

pub fn public_key<C: Signing>(&self, secp: &Secp256k1<C>) -> PublicKey

Creates a public key from this private key

Source

pub fn to_bytes(self) -> Vec<u8>

Serialize the private key to bytes

Source

pub fn from_slice( data: &[u8], network: impl Into<NetworkKind>, ) -> Result<PrivateKey, Error>

Deserialize a private key from a slice

Source

pub fn fmt_wif(&self, fmt: &mut dyn Write) -> Result

Format the private key to WIF format.

Source

pub fn to_wif(self) -> String

Get WIF encoding of this private key.

Source

pub fn from_wif(wif: &str) -> Result<PrivateKey, FromWifError>

Parse WIF encoded private key.

Source

pub fn negate(&self) -> Self

Returns a new private key with the negated secret value.

The resulting key corresponds to the same x-only public key (identical x-coordinate) but with the opposite y-coordinate parity. This is useful for ensuring compatibility with specific public key formats and BIP-340 requirements.

Trait Implementations§

Source§

impl Clone for PrivateKey

Source§

fn clone(&self) -> PrivateKey

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for PrivateKey

Source§

impl Debug for PrivateKey

Source§

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

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

impl<'de> Deserialize<'de> for PrivateKey

Available on crate feature serde only.
Source§

fn deserialize<D: Deserializer<'de>>(d: D) -> Result<PrivateKey, D::Error>

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for PrivateKey

Source§

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

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

impl Eq for PrivateKey

Source§

impl FromStr for PrivateKey

Source§

type Err = FromWifError

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<PrivateKey, FromWifError>

Parses a string s to return a value of this type. Read more
Source§

impl Index<RangeFull> for PrivateKey

Source§

type Output = [u8]

The returned type after indexing.
Source§

fn index(&self, _: RangeFull) -> &[u8]

Performs the indexing (container[index]) operation. Read more
Source§

impl PartialEq for PrivateKey

Source§

fn eq(&self, other: &PrivateKey) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · 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 Serialize for PrivateKey

Available on crate feature serde only.
Source§

fn serialize<S: Serializer>(&self, s: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for PrivateKey

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

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

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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

Source§

fn vzip(self) -> V