Type Alias bitcoin::key::UntweakedKeypair
source · pub type UntweakedKeypair = Keypair;
Expand description
Untweaked BIP-340 key pair
Aliased Type§
struct UntweakedKeypair(/* private fields */);
Implementations§
source§impl Keypair
impl Keypair
sourcepub fn display_secret(&self) -> DisplaySecret
pub fn display_secret(&self) -> DisplaySecret
Formats the explicit byte value of the secret key kept inside the type as a little-endian hexadecimal string using the provided formatter.
This is the only method that outputs the actual secret key value, and, thus, should be used with extreme precaution.
Example
use secp256k1::{Keypair, Secp256k1, SecretKey};
let secp = Secp256k1::new();
let key = SecretKey::from_str("0000000000000000000000000000000000000000000000000000000000000001").unwrap();
let key = Keypair::from_secret_key(&secp, &key);
// Here we explicitly display the secret value:
assert_eq!(
"0000000000000000000000000000000000000000000000000000000000000001",
format!("{}", key.display_secret())
);
// Also, we can explicitly display with `Debug`:
assert_eq!(
format!("{:?}", key.display_secret()),
format!("DisplaySecret(\"{}\")", key.display_secret())
);
source§impl Keypair
impl Keypair
sourcepub fn cmp_fast_unstable(&self, other: &Keypair) -> Ordering
pub fn cmp_fast_unstable(&self, other: &Keypair) -> Ordering
Like cmp::Cmp
but faster and with no guarantees across library versions.
The Cmp
implementation for FFI types is stable but slow because it first
serializes self
and other
before comparing them. This function provides a faster
comparison if you know that your types come from the same library version.
sourcepub fn eq_fast_unstable(&self, other: &Keypair) -> bool
pub fn eq_fast_unstable(&self, other: &Keypair) -> bool
Like cmp::Eq
but faster and with no guarantees across library versions.
The Eq
implementation for FFI types is stable but slow because it first serializes
self
and other
before comparing them. This function provides a faster equality
check if you know that your types come from the same library version.
source§impl Keypair
impl Keypair
sourcepub fn as_ptr(&self) -> *const Keypair
👎Deprecated since 0.25.0: Use Self::as_c_ptr if you need to access the FFI layer
pub fn as_ptr(&self) -> *const Keypair
Obtains a raw const pointer suitable for use with FFI functions.
sourcepub fn as_mut_ptr(&mut self) -> *mut Keypair
👎Deprecated since 0.25.0: Use Self::as_mut_c_ptr if you need to access the FFI layer
pub fn as_mut_ptr(&mut self) -> *mut Keypair
Obtains a raw mutable pointer suitable for use with FFI functions.
sourcepub fn from_secret_key<C>(secp: &Secp256k1<C>, sk: &SecretKey) -> Keypairwhere
C: Signing,
pub fn from_secret_key<C>(secp: &Secp256k1<C>, sk: &SecretKey) -> Keypairwhere C: Signing,
Creates a Keypair
directly from a Secp256k1 secret key.
sourcepub fn from_seckey_slice<C>(
secp: &Secp256k1<C>,
data: &[u8]
) -> Result<Keypair, Error>where
C: Signing,
pub fn from_seckey_slice<C>( secp: &Secp256k1<C>, data: &[u8] ) -> Result<Keypair, Error>where C: Signing,
Creates a Keypair
directly from a secret key slice.
Errors
Error::InvalidSecretKey
if the provided data has an incorrect length, exceeds Secp256k1
field p
value or the corresponding public key is not even.
sourcepub fn from_seckey_str<C>(
secp: &Secp256k1<C>,
s: &str
) -> Result<Keypair, Error>where
C: Signing,
pub fn from_seckey_str<C>( secp: &Secp256k1<C>, s: &str ) -> Result<Keypair, Error>where C: Signing,
Creates a Keypair
directly from a secret key string.
Errors
Error::InvalidSecretKey
if corresponding public key for the provided secret key is not even.
sourcepub fn secret_bytes(&self) -> [u8; 32]
pub fn secret_bytes(&self) -> [u8; 32]
Returns the secret bytes for this key pair.
sourcepub fn add_xonly_tweak<C>(
self,
secp: &Secp256k1<C>,
tweak: &Scalar
) -> Result<Keypair, Error>where
C: Verification,
pub fn add_xonly_tweak<C>( self, secp: &Secp256k1<C>, tweak: &Scalar ) -> Result<Keypair, Error>where C: Verification,
Tweaks a keypair by first converting the public key to an xonly key and tweaking it.
Errors
Returns an error if the resulting key would be invalid.
NB: Will not error if the tweaked public key has an odd value and can’t be used for BIP 340-342 purposes.
Examples
use secp256k1::{Secp256k1, Keypair, Scalar};
let secp = Secp256k1::new();
let tweak = Scalar::random();
let mut keypair = Keypair::new(&secp, &mut rand::thread_rng());
let tweaked = keypair.add_xonly_tweak(&secp, &tweak).expect("Improbable to fail with a randomly generated tweak");
sourcepub fn secret_key(&self) -> SecretKey
pub fn secret_key(&self) -> SecretKey
Returns the SecretKey
for this Keypair
.
This is equivalent to using SecretKey::from_keypair
.
sourcepub fn public_key(&self) -> PublicKey
pub fn public_key(&self) -> PublicKey
Returns the PublicKey
for this Keypair
.
This is equivalent to using PublicKey::from_keypair
.
sourcepub fn x_only_public_key(&self) -> (XOnlyPublicKey, Parity)
pub fn x_only_public_key(&self) -> (XOnlyPublicKey, Parity)
Returns the XOnlyPublicKey
(and it’s Parity
) for this Keypair
.
This is equivalent to using XOnlyPublicKey::from_keypair
.
sourcepub fn non_secure_erase(&mut self)
pub fn non_secure_erase(&mut self)
Attempts to erase the secret within the underlying array.
Note, however, that the compiler is allowed to freely copy or move the contents
of this array to other places in memory. Preventing this behavior is very subtle.
For more discussion on this, please see the documentation of the
zeroize
crate.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Keypair
impl<'de> Deserialize<'de> for Keypair
source§fn deserialize<D>(d: D) -> Result<Keypair, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(d: D) -> Result<Keypair, <D as Deserializer<'de>>::Error>where D: Deserializer<'de>,
source§impl From<TweakedKeypair> for Keypair
impl From<TweakedKeypair> for Keypair
source§fn from(pair: TweakedKeypair) -> Self
fn from(pair: TweakedKeypair) -> Self
source§impl Ord for Keypair
impl Ord for Keypair
source§impl PartialEq<Keypair> for Keypair
impl PartialEq<Keypair> for Keypair
source§impl PartialOrd<Keypair> for Keypair
impl PartialOrd<Keypair> for Keypair
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for Keypair
impl Serialize for Keypair
source§fn serialize<S>(
&self,
s: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>( &self, s: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where S: Serializer,
source§impl TapTweak for UntweakedKeypair
impl TapTweak for UntweakedKeypair
source§fn tap_tweak<C: Verification>(
self,
secp: &Secp256k1<C>,
merkle_root: Option<TapNodeHash>
) -> TweakedKeypair
fn tap_tweak<C: Verification>( self, secp: &Secp256k1<C>, merkle_root: Option<TapNodeHash> ) -> TweakedKeypair
Tweaks private and public keys within an untweaked Keypair
with corresponding public key
value and optional script tree merkle root.
This is done by tweaking private key within the pair using the equation q = p + H(P|c), where
- q is the tweaked private key
- p is the internal private key
- H is the hash function
- c is the commitment data
The public key is generated from a private key by multiplying with generator point, Q = qG.
Returns
The tweaked key and its parity.