Rename TapBranchHash -> TapNodeHash
This commit is contained in:
parent
1f7affbc95
commit
5ff2635585
|
@ -50,7 +50,7 @@ use crate::hash_types::{PubkeyHash, ScriptHash};
|
||||||
use crate::hashes::{sha256, Hash, HashEngine};
|
use crate::hashes::{sha256, Hash, HashEngine};
|
||||||
use crate::network::constants::Network;
|
use crate::network::constants::Network;
|
||||||
use crate::prelude::*;
|
use crate::prelude::*;
|
||||||
use crate::taproot::TapBranchHash;
|
use crate::taproot::TapNodeHash;
|
||||||
|
|
||||||
/// Address error.
|
/// Address error.
|
||||||
#[derive(Debug, PartialEq, Eq, Clone)]
|
#[derive(Debug, PartialEq, Eq, Clone)]
|
||||||
|
@ -479,7 +479,7 @@ impl Payload {
|
||||||
pub fn p2tr<C: Verification>(
|
pub fn p2tr<C: Verification>(
|
||||||
secp: &Secp256k1<C>,
|
secp: &Secp256k1<C>,
|
||||||
internal_key: UntweakedPublicKey,
|
internal_key: UntweakedPublicKey,
|
||||||
merkle_root: Option<TapBranchHash>,
|
merkle_root: Option<TapNodeHash>,
|
||||||
) -> Payload {
|
) -> Payload {
|
||||||
let (output_key, _parity) = internal_key.tap_tweak(secp, merkle_root);
|
let (output_key, _parity) = internal_key.tap_tweak(secp, merkle_root);
|
||||||
Payload::WitnessProgram {
|
Payload::WitnessProgram {
|
||||||
|
@ -627,7 +627,7 @@ impl Address {
|
||||||
pub fn p2tr<C: Verification>(
|
pub fn p2tr<C: Verification>(
|
||||||
secp: &Secp256k1<C>,
|
secp: &Secp256k1<C>,
|
||||||
internal_key: UntweakedPublicKey,
|
internal_key: UntweakedPublicKey,
|
||||||
merkle_root: Option<TapBranchHash>,
|
merkle_root: Option<TapNodeHash>,
|
||||||
network: Network,
|
network: Network,
|
||||||
) -> Address {
|
) -> Address {
|
||||||
Address { network, payload: Payload::p2tr(secp, internal_key, merkle_root) }
|
Address { network, payload: Payload::p2tr(secp, internal_key, merkle_root) }
|
||||||
|
|
|
@ -76,7 +76,7 @@ use crate::OutPoint;
|
||||||
|
|
||||||
use crate::key::PublicKey;
|
use crate::key::PublicKey;
|
||||||
use crate::address::WitnessVersion;
|
use crate::address::WitnessVersion;
|
||||||
use crate::taproot::{LeafVersion, TapBranchHash, TapLeafHash};
|
use crate::taproot::{LeafVersion, TapNodeHash, TapLeafHash};
|
||||||
use secp256k1::{Secp256k1, Verification, XOnlyPublicKey};
|
use secp256k1::{Secp256k1, Verification, XOnlyPublicKey};
|
||||||
use crate::schnorr::{TapTweak, TweakedPublicKey, UntweakedPublicKey};
|
use crate::schnorr::{TapTweak, TweakedPublicKey, UntweakedPublicKey};
|
||||||
|
|
||||||
|
@ -245,7 +245,7 @@ impl Script {
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn to_v1_p2tr<C: Verification>(&self, secp: &Secp256k1<C>, internal_key: UntweakedPublicKey) -> ScriptBuf {
|
pub fn to_v1_p2tr<C: Verification>(&self, secp: &Secp256k1<C>, internal_key: UntweakedPublicKey) -> ScriptBuf {
|
||||||
let leaf_hash = self.tapscript_leaf_hash();
|
let leaf_hash = self.tapscript_leaf_hash();
|
||||||
let merkle_root = TapBranchHash::from_inner(leaf_hash.into_inner());
|
let merkle_root = TapNodeHash::from(leaf_hash);
|
||||||
ScriptBuf::new_v1_p2tr(secp, internal_key, Some(merkle_root))
|
ScriptBuf::new_v1_p2tr(secp, internal_key, Some(merkle_root))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1133,7 +1133,7 @@ impl ScriptBuf {
|
||||||
|
|
||||||
/// Generates P2TR for script spending path using an internal public key and some optional
|
/// Generates P2TR for script spending path using an internal public key and some optional
|
||||||
/// script tree merkle root.
|
/// script tree merkle root.
|
||||||
pub fn new_v1_p2tr<C: Verification>(secp: &Secp256k1<C>, internal_key: UntweakedPublicKey, merkle_root: Option<TapBranchHash>) -> Self {
|
pub fn new_v1_p2tr<C: Verification>(secp: &Secp256k1<C>, internal_key: UntweakedPublicKey, merkle_root: Option<TapNodeHash>) -> Self {
|
||||||
let (output_key, _) = internal_key.tap_tweak(secp, merkle_root);
|
let (output_key, _) = internal_key.tap_tweak(secp, merkle_root);
|
||||||
ScriptBuf::new_witness_program(WitnessVersion::V1, &output_key.serialize())
|
ScriptBuf::new_witness_program(WitnessVersion::V1, &output_key.serialize())
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,7 @@ pub use secp256k1::{self, constants, Secp256k1, KeyPair, XOnlyPublicKey, Verific
|
||||||
|
|
||||||
use crate::prelude::*;
|
use crate::prelude::*;
|
||||||
|
|
||||||
use crate::taproot::{TapBranchHash, TapTweakHash};
|
use crate::taproot::{TapNodeHash, TapTweakHash};
|
||||||
use crate::sighash::SchnorrSighashType;
|
use crate::sighash::SchnorrSighashType;
|
||||||
|
|
||||||
/// Untweaked BIP-340 X-coord-only public key
|
/// Untweaked BIP-340 X-coord-only public key
|
||||||
|
@ -69,7 +69,7 @@ pub trait TapTweak {
|
||||||
///
|
///
|
||||||
/// # Returns
|
/// # Returns
|
||||||
/// The tweaked key and its parity.
|
/// The tweaked key and its parity.
|
||||||
fn tap_tweak<C: Verification>(self, secp: &Secp256k1<C>, merkle_root: Option<TapBranchHash>) -> Self::TweakedAux;
|
fn tap_tweak<C: Verification>(self, secp: &Secp256k1<C>, merkle_root: Option<TapNodeHash>) -> Self::TweakedAux;
|
||||||
|
|
||||||
/// Directly converts an [`UntweakedPublicKey`] to a [`TweakedPublicKey`]
|
/// Directly converts an [`UntweakedPublicKey`] to a [`TweakedPublicKey`]
|
||||||
///
|
///
|
||||||
|
@ -94,7 +94,7 @@ impl TapTweak for UntweakedPublicKey {
|
||||||
///
|
///
|
||||||
/// # Returns
|
/// # Returns
|
||||||
/// The tweaked key and its parity.
|
/// The tweaked key and its parity.
|
||||||
fn tap_tweak<C: Verification>(self, secp: &Secp256k1<C>, merkle_root: Option<TapBranchHash>) -> (TweakedPublicKey, secp256k1::Parity) {
|
fn tap_tweak<C: Verification>(self, secp: &Secp256k1<C>, merkle_root: Option<TapNodeHash>) -> (TweakedPublicKey, secp256k1::Parity) {
|
||||||
let tweak = TapTweakHash::from_key_and_tweak(self, merkle_root).to_scalar();
|
let tweak = TapTweakHash::from_key_and_tweak(self, merkle_root).to_scalar();
|
||||||
let (output_key, parity) = self.add_tweak(secp, &tweak).expect("Tap tweak failed");
|
let (output_key, parity) = self.add_tweak(secp, &tweak).expect("Tap tweak failed");
|
||||||
|
|
||||||
|
@ -123,7 +123,7 @@ impl TapTweak for UntweakedKeyPair {
|
||||||
///
|
///
|
||||||
/// # Returns
|
/// # Returns
|
||||||
/// The tweaked key and its parity.
|
/// The tweaked key and its parity.
|
||||||
fn tap_tweak<C: Verification>(self, secp: &Secp256k1<C>, merkle_root: Option<TapBranchHash>) -> TweakedKeyPair {
|
fn tap_tweak<C: Verification>(self, secp: &Secp256k1<C>, merkle_root: Option<TapNodeHash>) -> TweakedKeyPair {
|
||||||
let (pubkey, _parity) = XOnlyPublicKey::from_keypair(&self);
|
let (pubkey, _parity) = XOnlyPublicKey::from_keypair(&self);
|
||||||
let tweak = TapTweakHash::from_key_and_tweak(pubkey, merkle_root).to_scalar();
|
let tweak = TapTweakHash::from_key_and_tweak(pubkey, merkle_root).to_scalar();
|
||||||
let tweaked = self.add_xonly_tweak(secp, &tweak).expect("Tap tweak failed");
|
let tweaked = self.add_xonly_tweak(secp, &tweak).expect("Tap tweak failed");
|
||||||
|
|
|
@ -20,7 +20,7 @@ use crate::psbt::map::Map;
|
||||||
use crate::psbt::serialize::Deserialize;
|
use crate::psbt::serialize::Deserialize;
|
||||||
use crate::psbt::{self, error, raw, Error};
|
use crate::psbt::{self, error, raw, Error};
|
||||||
use crate::sighash::{self, NonStandardSighashType, SighashTypeParseError, EcdsaSighashType, SchnorrSighashType};
|
use crate::sighash::{self, NonStandardSighashType, SighashTypeParseError, EcdsaSighashType, SchnorrSighashType};
|
||||||
use crate::taproot::{ControlBlock, LeafVersion, TapLeafHash, TapBranchHash};
|
use crate::taproot::{ControlBlock, LeafVersion, TapLeafHash, TapNodeHash};
|
||||||
|
|
||||||
/// Type: Non-Witness UTXO PSBT_IN_NON_WITNESS_UTXO = 0x00
|
/// Type: Non-Witness UTXO PSBT_IN_NON_WITNESS_UTXO = 0x00
|
||||||
const PSBT_IN_NON_WITNESS_UTXO: u8 = 0x00;
|
const PSBT_IN_NON_WITNESS_UTXO: u8 = 0x00;
|
||||||
|
@ -124,7 +124,7 @@ pub struct Input {
|
||||||
/// Taproot Internal key.
|
/// Taproot Internal key.
|
||||||
pub tap_internal_key: Option<XOnlyPublicKey>,
|
pub tap_internal_key: Option<XOnlyPublicKey>,
|
||||||
/// Taproot Merkle root.
|
/// Taproot Merkle root.
|
||||||
pub tap_merkle_root: Option<TapBranchHash>,
|
pub tap_merkle_root: Option<TapNodeHash>,
|
||||||
/// Proprietary key-value pairs for this input.
|
/// Proprietary key-value pairs for this input.
|
||||||
#[cfg_attr(feature = "serde", serde(with = "crate::serde_utils::btreemap_as_seq_byte_values"))]
|
#[cfg_attr(feature = "serde", serde(with = "crate::serde_utils::btreemap_as_seq_byte_values"))]
|
||||||
pub proprietary: BTreeMap<raw::ProprietaryKey, Vec<u8>>,
|
pub proprietary: BTreeMap<raw::ProprietaryKey, Vec<u8>>,
|
||||||
|
@ -338,7 +338,7 @@ impl Input {
|
||||||
}
|
}
|
||||||
PSBT_IN_TAP_MERKLE_ROOT => {
|
PSBT_IN_TAP_MERKLE_ROOT => {
|
||||||
impl_psbt_insert_pair! {
|
impl_psbt_insert_pair! {
|
||||||
self.tap_merkle_root <= <raw_key: _>|< raw_value: TapBranchHash>
|
self.tap_merkle_root <= <raw_key: _>|< raw_value: TapNodeHash>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
PSBT_IN_PROPRIETARY => {
|
PSBT_IN_PROPRIETARY => {
|
||||||
|
|
|
@ -21,7 +21,7 @@ use crate::bip32::{ChildNumber, Fingerprint, KeySource};
|
||||||
use crate::hashes::{hash160, ripemd160, sha256, sha256d, Hash};
|
use crate::hashes::{hash160, ripemd160, sha256, sha256d, Hash};
|
||||||
use crate::crypto::{ecdsa, schnorr};
|
use crate::crypto::{ecdsa, schnorr};
|
||||||
use crate::psbt::{self, Error, PartiallySignedTransaction};
|
use crate::psbt::{self, Error, PartiallySignedTransaction};
|
||||||
use crate::taproot::{TapBranchHash, TapLeafHash, ControlBlock, LeafVersion};
|
use crate::taproot::{TapNodeHash, TapLeafHash, ControlBlock, LeafVersion};
|
||||||
use crate::crypto::key::PublicKey;
|
use crate::crypto::key::PublicKey;
|
||||||
|
|
||||||
use super::map::{Map, Input, Output, TapTree, PsbtSighashType};
|
use super::map::{Map, Input, Output, TapTree, PsbtSighashType};
|
||||||
|
@ -123,7 +123,7 @@ impl_psbt_de_serialize!(Witness);
|
||||||
impl_psbt_hash_de_serialize!(ripemd160::Hash);
|
impl_psbt_hash_de_serialize!(ripemd160::Hash);
|
||||||
impl_psbt_hash_de_serialize!(sha256::Hash);
|
impl_psbt_hash_de_serialize!(sha256::Hash);
|
||||||
impl_psbt_hash_de_serialize!(TapLeafHash);
|
impl_psbt_hash_de_serialize!(TapLeafHash);
|
||||||
impl_psbt_hash_de_serialize!(TapBranchHash);
|
impl_psbt_hash_de_serialize!(TapNodeHash);
|
||||||
impl_psbt_hash_de_serialize!(hash160::Hash);
|
impl_psbt_hash_de_serialize!(hash160::Hash);
|
||||||
impl_psbt_hash_de_serialize!(sha256d::Hash);
|
impl_psbt_hash_de_serialize!(sha256d::Hash);
|
||||||
|
|
||||||
|
|
|
@ -1391,7 +1391,7 @@ mod tests {
|
||||||
use secp256k1::{self, SecretKey, XOnlyPublicKey};
|
use secp256k1::{self, SecretKey, XOnlyPublicKey};
|
||||||
|
|
||||||
use crate::consensus::serde as con_serde;
|
use crate::consensus::serde as con_serde;
|
||||||
use crate::taproot::{TapBranchHash, TapTweakHash};
|
use crate::taproot::{TapNodeHash, TapTweakHash};
|
||||||
|
|
||||||
#[derive(serde::Deserialize)]
|
#[derive(serde::Deserialize)]
|
||||||
#[serde(crate = "actual_serde")]
|
#[serde(crate = "actual_serde")]
|
||||||
|
@ -1428,7 +1428,7 @@ mod tests {
|
||||||
struct KpsInputSpendingGiven {
|
struct KpsInputSpendingGiven {
|
||||||
txin_index: usize,
|
txin_index: usize,
|
||||||
internal_privkey: SecretKey,
|
internal_privkey: SecretKey,
|
||||||
merkle_root: Option<TapBranchHash>,
|
merkle_root: Option<TapNodeHash>,
|
||||||
#[serde(deserialize_with = "sighash_deser_numeric")]
|
#[serde(deserialize_with = "sighash_deser_numeric")]
|
||||||
hash_type: SchnorrSighashType,
|
hash_type: SchnorrSighashType,
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,19 +49,22 @@ const MIDSTATE_TAPSIGHASH: [u8; 32] = [
|
||||||
// Taproot test vectors from BIP-341 state the hashes without any reversing
|
// Taproot test vectors from BIP-341 state the hashes without any reversing
|
||||||
#[rustfmt::skip]
|
#[rustfmt::skip]
|
||||||
sha256t_hash_newtype!(TapLeafHash, TapLeafTag, MIDSTATE_TAPLEAF, 64,
|
sha256t_hash_newtype!(TapLeafHash, TapLeafTag, MIDSTATE_TAPLEAF, 64,
|
||||||
doc="Taproot-tagged hash for tapscript Merkle tree leafs", false
|
doc="Taproot-tagged hash with tag \"TapLeaf\".
|
||||||
|
This is used for computing tapscript script spend hash.", false
|
||||||
);
|
);
|
||||||
#[rustfmt::skip]
|
#[rustfmt::skip]
|
||||||
sha256t_hash_newtype!(TapBranchHash, TapBranchTag, MIDSTATE_TAPBRANCH, 64,
|
sha256t_hash_newtype!(TapNodeHash, TapBranchTag, MIDSTATE_TAPBRANCH, 64,
|
||||||
doc="Taproot-tagged hash for tapscript Merkle tree branches", false
|
doc="Tagged hash used in taproot trees; see BIP-340 for tagging rules", false
|
||||||
);
|
);
|
||||||
#[rustfmt::skip]
|
#[rustfmt::skip]
|
||||||
sha256t_hash_newtype!(TapTweakHash, TapTweakTag, MIDSTATE_TAPTWEAK, 64,
|
sha256t_hash_newtype!(TapTweakHash, TapTweakTag, MIDSTATE_TAPTWEAK, 64,
|
||||||
doc="Taproot-tagged hash for public key tweaks", false
|
doc="Taproot-tagged hash with tag \"TapTweak\".
|
||||||
|
This hash type is used while computing the tweaked public key", false
|
||||||
);
|
);
|
||||||
#[rustfmt::skip]
|
#[rustfmt::skip]
|
||||||
sha256t_hash_newtype!(TapSighashHash, TapSighashTag, MIDSTATE_TAPSIGHASH, 64,
|
sha256t_hash_newtype!(TapSighashHash, TapSighashTag, MIDSTATE_TAPSIGHASH, 64,
|
||||||
doc="Taproot-tagged hash for the taproot signature hash", false
|
doc="Taproot-tagged hash with tag \"TapSighash\".
|
||||||
|
This hash type is used for computing taproot signature hash.", false
|
||||||
);
|
);
|
||||||
|
|
||||||
impl secp256k1::ThirtyTwoByteHash for TapSighashHash {
|
impl secp256k1::ThirtyTwoByteHash for TapSighashHash {
|
||||||
|
@ -73,7 +76,7 @@ impl TapTweakHash {
|
||||||
/// `P` is the internal key and `R` is the merkle root.
|
/// `P` is the internal key and `R` is the merkle root.
|
||||||
pub fn from_key_and_tweak(
|
pub fn from_key_and_tweak(
|
||||||
internal_key: UntweakedPublicKey,
|
internal_key: UntweakedPublicKey,
|
||||||
merkle_root: Option<TapBranchHash>,
|
merkle_root: Option<TapNodeHash>,
|
||||||
) -> TapTweakHash {
|
) -> TapTweakHash {
|
||||||
let mut eng = TapTweakHash::engine();
|
let mut eng = TapTweakHash::engine();
|
||||||
// always hash the key
|
// always hash the key
|
||||||
|
@ -111,10 +114,10 @@ impl From<&ScriptLeaf> for TapLeafHash {
|
||||||
fn from(leaf: &ScriptLeaf) -> TapLeafHash { leaf.leaf_hash() }
|
fn from(leaf: &ScriptLeaf) -> TapLeafHash { leaf.leaf_hash() }
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TapBranchHash {
|
impl TapNodeHash {
|
||||||
/// Computes branch hash given two hashes of the nodes underneath it.
|
/// Computes branch hash given two hashes of the nodes underneath it.
|
||||||
pub fn from_node_hashes(a: sha256::Hash, b: sha256::Hash) -> TapBranchHash {
|
pub fn from_node_hashes(a: sha256::Hash, b: sha256::Hash) -> TapNodeHash {
|
||||||
let mut eng = TapBranchHash::engine();
|
let mut eng = TapNodeHash::engine();
|
||||||
if a < b {
|
if a < b {
|
||||||
eng.input(a.as_ref());
|
eng.input(a.as_ref());
|
||||||
eng.input(b.as_ref());
|
eng.input(b.as_ref());
|
||||||
|
@ -122,10 +125,14 @@ impl TapBranchHash {
|
||||||
eng.input(b.as_ref());
|
eng.input(b.as_ref());
|
||||||
eng.input(a.as_ref());
|
eng.input(a.as_ref());
|
||||||
};
|
};
|
||||||
TapBranchHash::from_engine(eng)
|
TapNodeHash::from_engine(eng)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl From<TapLeafHash> for TapNodeHash {
|
||||||
|
fn from(leaf: TapLeafHash) -> TapNodeHash { TapNodeHash::from_inner(leaf.into_inner()) }
|
||||||
|
}
|
||||||
|
|
||||||
/// Maximum depth of a taproot tree script spend path.
|
/// Maximum depth of a taproot tree script spend path.
|
||||||
// https://github.com/bitcoin/bitcoin/blob/e826b22da252e0599c61d21c98ff89f366b3120f/src/script/interpreter.h#L229
|
// https://github.com/bitcoin/bitcoin/blob/e826b22da252e0599c61d21c98ff89f366b3120f/src/script/interpreter.h#L229
|
||||||
pub const TAPROOT_CONTROL_MAX_NODE_COUNT: usize = 128;
|
pub const TAPROOT_CONTROL_MAX_NODE_COUNT: usize = 128;
|
||||||
|
@ -177,7 +184,7 @@ pub struct TaprootSpendInfo {
|
||||||
/// The BIP341 internal key.
|
/// The BIP341 internal key.
|
||||||
internal_key: UntweakedPublicKey,
|
internal_key: UntweakedPublicKey,
|
||||||
/// The merkle root of the script tree (None if there are no scripts).
|
/// The merkle root of the script tree (None if there are no scripts).
|
||||||
merkle_root: Option<TapBranchHash>,
|
merkle_root: Option<TapNodeHash>,
|
||||||
/// The sign final output pubkey as per BIP 341.
|
/// The sign final output pubkey as per BIP 341.
|
||||||
output_key_parity: secp256k1::Parity,
|
output_key_parity: secp256k1::Parity,
|
||||||
/// The tweaked output key.
|
/// The tweaked output key.
|
||||||
|
@ -221,7 +228,7 @@ impl TaprootSpendInfo {
|
||||||
pub fn new_key_spend<C: secp256k1::Verification>(
|
pub fn new_key_spend<C: secp256k1::Verification>(
|
||||||
secp: &Secp256k1<C>,
|
secp: &Secp256k1<C>,
|
||||||
internal_key: UntweakedPublicKey,
|
internal_key: UntweakedPublicKey,
|
||||||
merkle_root: Option<TapBranchHash>,
|
merkle_root: Option<TapNodeHash>,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
let (output_key, parity) = internal_key.tap_tweak(secp, merkle_root);
|
let (output_key, parity) = internal_key.tap_tweak(secp, merkle_root);
|
||||||
Self {
|
Self {
|
||||||
|
@ -243,7 +250,7 @@ impl TaprootSpendInfo {
|
||||||
pub fn internal_key(&self) -> UntweakedPublicKey { self.internal_key }
|
pub fn internal_key(&self) -> UntweakedPublicKey { self.internal_key }
|
||||||
|
|
||||||
/// Returns the merkle root for this [`TaprootSpendInfo`].
|
/// Returns the merkle root for this [`TaprootSpendInfo`].
|
||||||
pub fn merkle_root(&self) -> Option<TapBranchHash> { self.merkle_root }
|
pub fn merkle_root(&self) -> Option<TapNodeHash> { self.merkle_root }
|
||||||
|
|
||||||
/// Returns the output key (the key used in script pubkey) for this [`TaprootSpendInfo`].
|
/// Returns the output key (the key used in script pubkey) for this [`TaprootSpendInfo`].
|
||||||
pub fn output_key(&self) -> TweakedPublicKey { self.output_key }
|
pub fn output_key(&self) -> TweakedPublicKey { self.output_key }
|
||||||
|
@ -261,7 +268,7 @@ impl TaprootSpendInfo {
|
||||||
node: NodeInfo,
|
node: NodeInfo,
|
||||||
) -> TaprootSpendInfo {
|
) -> TaprootSpendInfo {
|
||||||
// Create as if it is a key spend path with the given merkle root
|
// Create as if it is a key spend path with the given merkle root
|
||||||
let root_hash = Some(TapBranchHash::from_inner(node.hash.into_inner()));
|
let root_hash = Some(TapNodeHash::from_inner(node.hash.into_inner()));
|
||||||
let mut info = TaprootSpendInfo::new_key_spend(secp, internal_key, root_hash);
|
let mut info = TaprootSpendInfo::new_key_spend(secp, internal_key, root_hash);
|
||||||
for leaves in node.leaves {
|
for leaves in node.leaves {
|
||||||
let key = (leaves.script, leaves.ver);
|
let key = (leaves.script, leaves.ver);
|
||||||
|
@ -568,7 +575,7 @@ impl NodeInfo {
|
||||||
b_leaf.merkle_branch.push(a.hash)?; // add hashing partner
|
b_leaf.merkle_branch.push(a.hash)?; // add hashing partner
|
||||||
all_leaves.push(b_leaf);
|
all_leaves.push(b_leaf);
|
||||||
}
|
}
|
||||||
let hash = TapBranchHash::from_node_hashes(a.hash, b.hash);
|
let hash = TapNodeHash::from_node_hashes(a.hash, b.hash);
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
hash: sha256::Hash::from_inner(hash.into_inner()),
|
hash: sha256::Hash::from_inner(hash.into_inner()),
|
||||||
leaves: all_leaves,
|
leaves: all_leaves,
|
||||||
|
@ -622,7 +629,7 @@ impl ScriptLeaf {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The merkle proof for inclusion of a tree in a taptree hash.
|
/// The merkle proof for inclusion of a tree in a taptree hash.
|
||||||
// The type of hash is `sha256::Hash` because the vector might contain both `TapBranchHash` and
|
// The type of hash is `sha256::Hash` because the vector might contain both `TapNodeHash` and
|
||||||
// `TapLeafHash`.
|
// `TapLeafHash`.
|
||||||
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
|
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
|
||||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||||
|
@ -802,11 +809,11 @@ impl ControlBlock {
|
||||||
// compute the script hash
|
// compute the script hash
|
||||||
// Initially the curr_hash is the leaf hash
|
// Initially the curr_hash is the leaf hash
|
||||||
let leaf_hash = TapLeafHash::from_script(script, self.leaf_version);
|
let leaf_hash = TapLeafHash::from_script(script, self.leaf_version);
|
||||||
let mut curr_hash = TapBranchHash::from_inner(leaf_hash.into_inner());
|
let mut curr_hash = TapNodeHash::from_inner(leaf_hash.into_inner());
|
||||||
// Verify the proof
|
// Verify the proof
|
||||||
for elem in self.merkle_branch.as_inner() {
|
for elem in self.merkle_branch.as_inner() {
|
||||||
// Recalculate the curr hash as parent hash
|
// Recalculate the curr hash as parent hash
|
||||||
curr_hash = TapBranchHash::from_node_hashes(
|
curr_hash = TapNodeHash::from_node_hashes(
|
||||||
sha256::Hash::from_inner(curr_hash.into_inner()),
|
sha256::Hash::from_inner(curr_hash.into_inner()),
|
||||||
*elem,
|
*elem,
|
||||||
);
|
);
|
||||||
|
@ -1137,7 +1144,7 @@ mod test {
|
||||||
sha256::Hash::from_engine(e).into_inner()
|
sha256::Hash::from_engine(e).into_inner()
|
||||||
}
|
}
|
||||||
assert_eq!(empty_hash("TapLeaf"), TapLeafHash::hash(&[]).into_inner());
|
assert_eq!(empty_hash("TapLeaf"), TapLeafHash::hash(&[]).into_inner());
|
||||||
assert_eq!(empty_hash("TapBranch"), TapBranchHash::hash(&[]).into_inner());
|
assert_eq!(empty_hash("TapBranch"), TapNodeHash::hash(&[]).into_inner());
|
||||||
assert_eq!(empty_hash("TapTweak"), TapTweakHash::hash(&[]).into_inner());
|
assert_eq!(empty_hash("TapTweak"), TapTweakHash::hash(&[]).into_inner());
|
||||||
assert_eq!(empty_hash("TapSighash"), TapSighashHash::hash(&[]).into_inner());
|
assert_eq!(empty_hash("TapSighash"), TapSighashHash::hash(&[]).into_inner());
|
||||||
}
|
}
|
||||||
|
@ -1154,7 +1161,7 @@ mod test {
|
||||||
"5212c288a377d1f8164962a5a13429f9ba6a7b84e59776a52c6637df2106facb"
|
"5212c288a377d1f8164962a5a13429f9ba6a7b84e59776a52c6637df2106facb"
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
TapBranchHash::from_engine(TapBranchTag::engine()).to_string(),
|
TapNodeHash::from_engine(TapBranchTag::engine()).to_string(),
|
||||||
"53c373ec4d6f3c53c1f5fb2ff506dcefe1a0ed74874f93fa93c8214cbe9ffddf"
|
"53c373ec4d6f3c53c1f5fb2ff506dcefe1a0ed74874f93fa93c8214cbe9ffddf"
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
|
@ -1176,7 +1183,7 @@ mod test {
|
||||||
"ed1382037800c9dd938dd8854f1a8863bcdeb6705069b4b56a66ec22519d5829"
|
"ed1382037800c9dd938dd8854f1a8863bcdeb6705069b4b56a66ec22519d5829"
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
TapBranchHash::hash(&[0]).to_string(),
|
TapNodeHash::hash(&[0]).to_string(),
|
||||||
"92534b1960c7e6245af7d5fda2588db04aa6d646abc2b588dab2b69e5645eb1d"
|
"92534b1960c7e6245af7d5fda2588db04aa6d646abc2b588dab2b69e5645eb1d"
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
|
@ -1412,7 +1419,7 @@ mod test {
|
||||||
assert!(arr["intermediary"]["merkleRoot"].is_null());
|
assert!(arr["intermediary"]["merkleRoot"].is_null());
|
||||||
} else {
|
} else {
|
||||||
merkle_root = Some(
|
merkle_root = Some(
|
||||||
TapBranchHash::from_str(arr["intermediary"]["merkleRoot"].as_str().unwrap())
|
TapNodeHash::from_str(arr["intermediary"]["merkleRoot"].as_str().unwrap())
|
||||||
.unwrap(),
|
.unwrap(),
|
||||||
);
|
);
|
||||||
let leaf_hashes = arr["intermediary"]["leafHashes"].as_array().unwrap();
|
let leaf_hashes = arr["intermediary"]["leafHashes"].as_array().unwrap();
|
||||||
|
|
Loading…
Reference in New Issue