Struct kaspa_bip32::SecretKey
source · pub struct SecretKey(/* private fields */);
Expand description
Secret 256-bit key used as x
in an ECDSA signature.
§Serde support
Implements de/serialization with the serde
feature enabled. We treat the byte value as a tuple
of 32 u8
s for non-human-readable formats. This representation is optimal for for some formats
(e.g. bincode
) however other formats may be less optimal (e.g. cbor
).
§Examples
Basic usage:
use secp256k1::{rand, Secp256k1, SecretKey};
let secp = Secp256k1::new();
let secret_key = SecretKey::new(&mut rand::thread_rng());
Implementations§
source§impl SecretKey
impl SecretKey
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 caution.
§Examples
let key = secp256k1::ONE_KEY;
// Normal debug hides value (`Display` is not implemented for `SecretKey`).
// E.g., `format!("{:?}", key)` prints "SecretKey(#2518682f7819fb2d)".
// 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 SecretKey
impl SecretKey
sourcepub fn as_mut_ptr(&mut self) -> *mut u8
pub fn as_mut_ptr(&mut self) -> *mut u8
Converts the object to a mutable raw pointer for FFI interfacing
source§impl SecretKey
impl SecretKey
sourcepub fn new<R>(rng: &mut R) -> SecretKey
pub fn new<R>(rng: &mut R) -> SecretKey
Generates a new random secret key.
§Examples
use secp256k1::{rand, SecretKey};
let secret_key = SecretKey::new(&mut rand::thread_rng());
sourcepub fn from_slice(data: &[u8]) -> Result<SecretKey, Error>
pub fn from_slice(data: &[u8]) -> Result<SecretKey, Error>
Converts a SECRET_KEY_SIZE
-byte slice to a secret key.
§Examples
use secp256k1::SecretKey;
let sk = SecretKey::from_slice(&[0xcd; 32]).expect("32 bytes, within curve order");
sourcepub fn from_keypair(keypair: &KeyPair) -> SecretKey
pub fn from_keypair(keypair: &KeyPair) -> SecretKey
sourcepub fn secret_bytes(&self) -> [u8; 32]
pub fn secret_bytes(&self) -> [u8; 32]
Returns the secret key as a byte value.
sourcepub fn negate_assign(&mut self)
👎Deprecated since 0.23.0: Use negate instead
pub fn negate_assign(&mut self)
Negates the secret key.
sourcepub fn add_assign(&mut self, other: &Scalar) -> Result<(), Error>
👎Deprecated since 0.23.0: Use add_tweak instead
pub fn add_assign(&mut self, other: &Scalar) -> Result<(), Error>
Adds one secret key to another, modulo the curve order.
§Errors
Returns an error if the resulting key would be invalid.
sourcepub fn mul_assign(&mut self, other: &Scalar) -> Result<(), Error>
👎Deprecated since 0.23.0: Use mul_tweak instead
pub fn mul_assign(&mut self, other: &Scalar) -> Result<(), Error>
Multiplies one secret key by another, modulo the curve order. Will return an error if the resulting key would be invalid.
sourcepub fn sign_ecdsa(&self, msg: Message) -> Signature
pub fn sign_ecdsa(&self, msg: Message) -> Signature
Constructs an ECDSA signature for msg
using the global SECP256K1
context.
sourcepub fn keypair<C>(&self, secp: &Secp256k1<C>) -> KeyPairwhere
C: Signing,
pub fn keypair<C>(&self, secp: &Secp256k1<C>) -> KeyPairwhere
C: Signing,
Returns the KeyPair
for this SecretKey
.
This is equivalent to using KeyPair::from_secret_key
.
sourcepub fn public_key<C>(&self, secp: &Secp256k1<C>) -> PublicKeywhere
C: Signing,
pub fn public_key<C>(&self, secp: &Secp256k1<C>) -> PublicKeywhere
C: Signing,
Returns the PublicKey
for this SecretKey
.
This is equivalent to using PublicKey::from_secret_key
.
sourcepub fn x_only_public_key<C>(
&self,
secp: &Secp256k1<C>
) -> (XOnlyPublicKey, Parity)where
C: Signing,
pub fn x_only_public_key<C>(
&self,
secp: &Secp256k1<C>
) -> (XOnlyPublicKey, Parity)where
C: Signing,
Returns the XOnlyPublicKey
(and it’s Parity
) for this SecretKey
.
This is equivalent to XOnlyPublicKey::from_keypair(self.keypair(secp))
.
Trait Implementations§
source§impl<'de> Deserialize<'de> for SecretKey
impl<'de> Deserialize<'de> for SecretKey
source§fn deserialize<D>(d: D) -> Result<SecretKey, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(d: D) -> Result<SecretKey, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
source§impl Ord for SecretKey
impl Ord for SecretKey
source§impl PartialEq for SecretKey
impl PartialEq for SecretKey
source§impl PartialOrd for SecretKey
impl PartialOrd for SecretKey
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 PrivateKey for SecretKey
impl PrivateKey for SecretKey
source§fn from_bytes(bytes: &PrivateKeyBytes) -> Result<Self>
fn from_bytes(bytes: &PrivateKeyBytes) -> Result<Self>
source§fn to_bytes(&self) -> PrivateKeyBytes
fn to_bytes(&self) -> PrivateKeyBytes
source§fn derive_child(&self, other: PrivateKeyBytes) -> Result<Self>
fn derive_child(&self, other: PrivateKeyBytes) -> Result<Self>
other
is referred to as “I sub L” in BIP32 and sourced
from the left half of the HMAC-SHA-512 output.source§fn public_key(&self) -> Self::PublicKey
fn public_key(&self) -> Self::PublicKey
Self::PublicKey
that corresponds to this private key.source§impl SecretKeyExt for SecretKey
impl SecretKeyExt for SecretKey
source§impl Serialize for SecretKey
impl Serialize for SecretKey
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,
impl Copy for SecretKey
impl Eq for SecretKey
Auto Trait Implementations§
impl RefUnwindSafe for SecretKey
impl Send for SecretKey
impl Sync for SecretKey
impl Unpin for SecretKey
impl UnwindSafe for SecretKey
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<const N: usize, T> Serialize<N> for T
impl<const N: usize, T> Serialize<N> for T
source§fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
self
using the provided Serializer.