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>(&self, secp: &Secp256k1<C>) -> PublicKey
where C: Signing,

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<(), Error>

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) -> PrivateKey

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 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for PrivateKey

Source§

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

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>(d: D) -> Result<PrivateKey, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

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

impl Display for PrivateKey

Source§

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

Formats the value using the given formatter. Read more
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<Ctx> GeneratableKey<Ctx> for PrivateKey
where Ctx: ScriptContext,

Source§

type Entropy = [u8; 32]

Type specifying the amount of entropy required e.g. [u8;32]
Source§

type Options = PrivateKeyGenerateOptions

Extra options required by the generate_with_entropy
Source§

type Error = Error

Returned error in case of failure
Source§

fn generate_with_entropy( options: <PrivateKey as GeneratableKey<Ctx>>::Options, entropy: <PrivateKey as GeneratableKey<Ctx>>::Entropy, ) -> Result<GeneratedKey<PrivateKey, Ctx>, <PrivateKey as GeneratableKey<Ctx>>::Error>

Generate a key given the extra options and the entropy
Source§

fn generate( options: Self::Options, ) -> Result<GeneratedKey<Self, Ctx>, Self::Error>

Generate a key given the options with random entropy. Read more
Source§

fn generate_with_aux_rand( options: Self::Options, rng: &mut (impl CryptoRng + RngCore), ) -> Result<GeneratedKey<Self, Ctx>, Self::Error>

Generate a key given the options with random entropy. 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<Ctx> IntoDescriptorKey<Ctx> for PrivateKey
where Ctx: ScriptContext,

Source§

fn into_descriptor_key(self) -> Result<DescriptorKey<Ctx>, KeyError>

Turn the key into a DescriptorKey within the requested ScriptContext
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 · 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>( &self, s: S, ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

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

impl Copy for PrivateKey

Source§

impl Eq for PrivateKey

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<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<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
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> 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

Source§

impl<T> VerifyEq for T
where T: Eq,

Source§

fn verify_eq(&self, other: &T) -> bool

Verifies commit-equivalence of two instances of the same type.
Source§

impl<T> VerifyEq for T
where T: Eq,

Source§

fn verify_eq(&self, other: &T) -> bool

Verifies commit-equivalence of two instances of the same type.
Source§

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