2023-09-01 04:10:56 +00:00
|
|
|
use crate::PublicKey;
|
|
|
|
|
|
|
|
use thiserror::Error;
|
|
|
|
|
|
|
|
pub type PrivateKeyBytes = [u8; 32];
|
|
|
|
|
2023-09-01 04:49:35 +00:00
|
|
|
/// Functions required to use an `ExtendedPrivateKey`.
|
2023-09-01 04:10:56 +00:00
|
|
|
pub trait PrivateKey: Sized {
|
2023-09-01 04:49:35 +00:00
|
|
|
/// A type implementing [`PublicKey`] associated with Self.
|
2023-09-01 04:10:56 +00:00
|
|
|
type PublicKey: PublicKey;
|
2023-09-01 04:49:35 +00:00
|
|
|
|
|
|
|
/// The error returned by [`PrivateKey::derive_child()`].
|
2023-09-01 04:10:56 +00:00
|
|
|
type Err: std::error::Error;
|
|
|
|
|
2023-09-01 04:49:35 +00:00
|
|
|
/// Create a Self from bytes.
|
2023-09-01 04:10:56 +00:00
|
|
|
fn from_bytes(b: &PrivateKeyBytes) -> Self;
|
2023-09-01 04:49:35 +00:00
|
|
|
|
|
|
|
/// Convert a &Self to bytes.
|
2023-09-01 04:10:56 +00:00
|
|
|
fn to_bytes(&self) -> PrivateKeyBytes;
|
|
|
|
|
2023-09-01 04:49:35 +00:00
|
|
|
/// Whether or not zero is a valid public key (such as with ed25519 keys).
|
2023-09-01 04:10:56 +00:00
|
|
|
fn is_zero_valid_public_key() -> bool {
|
|
|
|
false
|
|
|
|
}
|
2023-09-01 04:49:35 +00:00
|
|
|
|
|
|
|
/// The initial key for BIP-0032 and SLIP-0010 derivation, such as secp256k1's "Bitcoin seed".
|
2023-09-01 04:10:56 +00:00
|
|
|
fn key() -> &'static str;
|
|
|
|
|
2023-09-01 04:49:35 +00:00
|
|
|
/// Generate a [`Self::PublicKey`].
|
2023-09-01 04:10:56 +00:00
|
|
|
fn public_key(&self) -> Self::PublicKey;
|
|
|
|
|
|
|
|
/// Derive a child [`PrivateKey`] with given `PrivateKeyBytes`.
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// An error may be returned if:
|
|
|
|
/// * A nonzero `other` is provided.
|
|
|
|
/// * An error specific to the given algorithm was encountered.
|
|
|
|
fn derive_child(&self, other: &PrivateKeyBytes) -> Result<Self, Self::Err>;
|
|
|
|
}
|
|
|
|
|
2023-09-01 04:49:35 +00:00
|
|
|
/// Errors associated with creating and arithmetic on private keys. This specific error is only
|
|
|
|
/// intended to be used by the implementations in this crate.
|
2023-09-01 04:10:56 +00:00
|
|
|
#[derive(Clone, Debug, Error)]
|
|
|
|
pub enum PrivateKeyError {
|
2023-09-01 04:49:35 +00:00
|
|
|
/// For the given algorithm, the private key must be nonzero.
|
2023-09-01 04:10:56 +00:00
|
|
|
#[error("The provided private key must be nonzero, but is not")]
|
|
|
|
NonZero,
|
|
|
|
|
2023-09-01 04:49:35 +00:00
|
|
|
/// Unable to convert a point to a key.
|
2023-09-01 04:10:56 +00:00
|
|
|
#[error("Unable to convert point to key")]
|
|
|
|
PointToKey(#[from] k256::elliptic_curve::Error),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "secp256k1")]
|
|
|
|
use k256::NonZeroScalar;
|
|
|
|
|
|
|
|
#[cfg(feature = "secp256k1")]
|
|
|
|
impl PrivateKey for k256::SecretKey {
|
|
|
|
type Err = PrivateKeyError;
|
|
|
|
type PublicKey = k256::PublicKey;
|
|
|
|
|
|
|
|
fn key() -> &'static str {
|
|
|
|
"Bitcoin seed"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_bytes(b: &PrivateKeyBytes) -> Self {
|
|
|
|
Self::from_slice(b).expect("Invalid private key bytes")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_bytes(&self) -> PrivateKeyBytes {
|
|
|
|
// Note: Safety assured by type returned from EncodedPoint
|
|
|
|
self.to_bytes().into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn derive_child(&self, other: &PrivateKeyBytes) -> Result<Self, Self::Err> {
|
|
|
|
if other.iter().all(|n| n == &0) {
|
|
|
|
return Err(PrivateKeyError::NonZero);
|
|
|
|
}
|
|
|
|
let other = *other;
|
|
|
|
// Checked: See above nonzero check
|
|
|
|
let scalar = Option::<NonZeroScalar>::from(NonZeroScalar::from_repr(other.into()))
|
|
|
|
.expect("Should have been able to get a NonZeroScalar");
|
|
|
|
|
|
|
|
let derived_scalar = self.to_nonzero_scalar().as_ref() + scalar.as_ref();
|
|
|
|
Ok(
|
|
|
|
Option::<NonZeroScalar>::from(NonZeroScalar::new(derived_scalar))
|
|
|
|
.map(Into::into)
|
|
|
|
.expect("Should be able to make Key"),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn public_key(&self) -> Self::PublicKey {
|
|
|
|
self.public_key()
|
|
|
|
}
|
|
|
|
}
|