forked from rust-bitcoin/rust-miniscript
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtest_utils.rs
187 lines (167 loc) · 6.32 KB
/
test_utils.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
// SPDX-License-Identifier: CC0-1.0
//! Generally useful utilities for test scripts
use std::collections::HashMap;
use std::str::FromStr;
use bitcoin::hashes::{hash160, ripemd160, sha256};
use bitcoin::key::XOnlyPublicKey;
#[cfg(not(test))] // https://github.com/rust-lang/rust/issues/121684
use bitcoin::secp256k1;
use crate::miniscript::context::SigType;
use crate::{hash256, ToPublicKey, Translator};
/// Translate from a String MiniscriptKey type to bitcoin::PublicKey
/// If the hashmap is populated, this will lookup for keys in HashMap
/// Otherwise, this will return a translation to a random key
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct StrKeyTranslator {
pub pk_map: HashMap<String, bitcoin::PublicKey>,
pub pkh_map: HashMap<String, hash160::Hash>,
pub sha256_map: HashMap<String, sha256::Hash>,
pub ripemd160_map: HashMap<String, ripemd160::Hash>,
pub hash160_map: HashMap<String, hash160::Hash>,
}
impl Translator<String, bitcoin::PublicKey, ()> for StrKeyTranslator {
fn pk(&mut self, pk: &String) -> Result<bitcoin::PublicKey, ()> {
let key = self.pk_map.get(pk).copied().unwrap_or_else(|| {
bitcoin::PublicKey::from_str(
"02c2122e30e73f7fe37986e3f81ded00158e94b7ad472369b83bbdd28a9a198a39",
)
.unwrap()
});
Ok(key)
}
fn sha256(&mut self, _sha256: &String) -> Result<sha256::Hash, ()> {
let hash = sha256::Hash::from_str(
"4ae81572f06e1b88fd5ced7a1a000945432e83e1551e6f721ee9c00b8cc33260",
)
.unwrap();
Ok(hash)
}
fn hash256(&mut self, _hash256: &String) -> Result<hash256::Hash, ()> {
// hard coded value
let hash = hash256::Hash::from_str(
"4ae81572f06e1b88fd5ced7a1a000945432e83e1551e6f721ee9c00b8cc33260",
)
.unwrap();
Ok(hash)
}
fn ripemd160(&mut self, _ripemd160: &String) -> Result<ripemd160::Hash, ()> {
let hash = ripemd160::Hash::from_str("4ae81572f06e1b88fd5ced7a1a00094543a0069").unwrap();
Ok(hash)
}
fn hash160(&mut self, _hash160: &String) -> Result<hash160::Hash, ()> {
let hash = hash160::Hash::from_str("4ae81572f06e1b88fd5ced7a1a00094543a0069").unwrap();
Ok(hash)
}
}
/// Same as [`StrKeyTranslator`], but for [`bitcoin::XOnlyPublicKey`]
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct StrXOnlyKeyTranslator {
pub pk_map: HashMap<String, XOnlyPublicKey>,
pub pkh_map: HashMap<String, hash160::Hash>,
pub sha256_map: HashMap<String, sha256::Hash>,
pub ripemd160_map: HashMap<String, ripemd160::Hash>,
pub hash160_map: HashMap<String, hash160::Hash>,
}
impl Translator<String, XOnlyPublicKey, ()> for StrXOnlyKeyTranslator {
fn pk(&mut self, pk: &String) -> Result<XOnlyPublicKey, ()> {
let key = self.pk_map.get(pk).copied().unwrap_or_else(|| {
XOnlyPublicKey::from_str(
"c2122e30e73f7fe37986e3f81ded00158e94b7ad472369b83bbdd28a9a198a39",
)
.unwrap()
});
Ok(key)
}
fn sha256(&mut self, _sha256: &String) -> Result<sha256::Hash, ()> {
let hash = sha256::Hash::from_str(
"4ae81572f06e1b88fd5ced7a1a000945432e83e1551e6f721ee9c00b8cc33260",
)
.unwrap();
Ok(hash)
}
fn hash256(&mut self, _hash256: &String) -> Result<hash256::Hash, ()> {
let hash = hash256::Hash::from_str(
"4ae81572f06e1b88fd5ced7a1a000945432e83e1551e6f721ee9c00b8cc33260",
)
.unwrap();
Ok(hash)
}
fn ripemd160(&mut self, _ripemd160: &String) -> Result<ripemd160::Hash, ()> {
let hash = ripemd160::Hash::from_str("4ae81572f06e1b88fd5ced7a1a00094543a0069").unwrap();
Ok(hash)
}
fn hash160(&mut self, _hash160: &String) -> Result<hash160::Hash, ()> {
let hash = hash160::Hash::from_str("4ae81572f06e1b88fd5ced7a1a00094543a0069").unwrap();
Ok(hash)
}
}
// Deterministically sample keys to allow reproducible tests
fn random_sks(n: usize) -> Vec<secp256k1::SecretKey> {
let mut sk = [0; 32];
let mut sks = vec![];
for i in 1..n + 1 {
sk[0] = i as u8;
sk[1] = (i >> 8) as u8;
sk[2] = (i >> 16) as u8;
sk[3] = (i >> 24) as u8;
let sk = secp256k1::SecretKey::from_slice(&sk[..]).expect("secret key");
sks.push(sk)
}
sks
}
impl StrKeyTranslator {
pub fn new() -> Self {
let secp = secp256k1::Secp256k1::new();
let sks = random_sks(26);
let pks: Vec<_> = sks
.iter()
.map(|sk| bitcoin::PublicKey::new(secp256k1::PublicKey::from_secret_key(&secp, sk)))
.collect();
let mut pk_map = HashMap::new();
let mut pkh_map = HashMap::new();
for (i, c) in (b'A'..=b'Z').enumerate() {
let key = String::from_utf8(vec![c]).unwrap();
pk_map.insert(key.clone(), pks[i]);
pkh_map.insert(key, pks[i].to_pubkeyhash(SigType::Ecdsa));
}
// We don't bother filling in sha256_map preimages in default implementation as it not unnecessary
// for sane miniscripts
Self {
pk_map,
pkh_map,
sha256_map: HashMap::new(),
ripemd160_map: HashMap::new(),
hash160_map: HashMap::new(),
}
}
}
impl StrXOnlyKeyTranslator {
pub fn new() -> Self {
let secp = secp256k1::Secp256k1::new();
let sks = random_sks(26);
let pks: Vec<_> = sks
.iter()
.map(|sk| {
let keypair = secp256k1::Keypair::from_secret_key(&secp, sk);
let (pk, _parity) = XOnlyPublicKey::from_keypair(&keypair);
pk
})
.collect();
let mut pk_map = HashMap::new();
let mut pkh_map = HashMap::new();
for (i, c) in (b'A'..=b'Z').enumerate() {
let key = String::from_utf8(vec![c]).unwrap();
pk_map.insert(key.clone(), pks[i]);
pkh_map.insert(key, pks[i].to_pubkeyhash(SigType::Schnorr));
}
// We don't bother filling in sha256_map preimages in default implementation as it not unnecessary
// for sane miniscripts
Self {
pk_map,
pkh_map,
sha256_map: HashMap::new(),
ripemd160_map: HashMap::new(),
hash160_map: HashMap::new(),
}
}
}