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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
use std::str::FromStr;
use bitcoin::hashes::{ripemd160, Hash};
use bitcoin::util::base58::check_encode_slice;
use bitcoin::util::base58::from_check;
use bitcoin::util::taproot::TapTweakHash;
use bitcoin_bech32::{u5, WitnessProgram};
use hex_utilities::{decode_hex, encode_hex};
use secp256k1::{Scalar, Secp256k1, SecretKey};
use sha2::{Digest, Sha256};
#[derive(Debug, Clone, Copy)]
pub enum Network {
Mainnet,
Testnet,
}
#[derive(Copy, Clone)]
pub enum AddressType {
P2PKH,
P2SH,
P2WPKH,
P2TR,
}
pub fn concat_u8(first: &[u8], second: &[u8]) -> Vec<u8> {
[first, second].concat()
}
pub fn sha256_hex(hex_to_hash: &String) -> String {
let hex_byte_array = decode_hex(&hex_to_hash).unwrap();
let mut hasher = Sha256::new();
hasher.update(&hex_byte_array);
let sha256_result = hasher.finalize();
let sha256_result_array = sha256_result.to_vec();
let hex_result = encode_hex(&sha256_result_array);
hex_result
}
pub fn double_sha256_hex(hex_to_hash: &String) -> String {
let hex_byte_array = decode_hex(&hex_to_hash).unwrap();
let mut hasher = Sha256::new();
hasher.update(&hex_byte_array);
let sha256_result = hasher.finalize();
let sha256_result_array = sha256_result.to_vec();
let hex_byte_array_2 = sha256_result_array;
let mut hasher_2 = Sha256::new();
hasher_2.update(&hex_byte_array_2);
let sha256_result_2 = hasher_2.finalize();
let sha256_result_array_2 = sha256_result_2.to_vec();
encode_hex(&sha256_result_array_2)
}
pub fn get_compressed_public_key_from_private_key(private_key: &str) -> String {
let secp = Secp256k1::new();
let secret_key = SecretKey::from_str(private_key).unwrap();
let public_key_uncompressed = secret_key.public_key(&secp).serialize();
encode_hex(&public_key_uncompressed)
}
pub fn get_wif_from_private_key(
private_key: &String,
network: Network,
should_compress: bool,
) -> String {
let version_application_byte_for_mainnet = "80";
let version_application_byte_for_testnet = "ef";
let version_application_byte = match network {
Network::Mainnet => version_application_byte_for_mainnet,
Network::Testnet => version_application_byte_for_testnet,
};
let private_key_hex = decode_hex(&private_key).unwrap();
let version_array = decode_hex(version_application_byte).unwrap();
let end = "01";
let end_array = decode_hex(end).unwrap();
let combined_version_and_private_key_hex = concat_u8(&version_array, &private_key_hex);
let combined_version_and_private_key_hex_with_end_array = if should_compress {
concat_u8(&combined_version_and_private_key_hex, &end_array)
} else {
combined_version_and_private_key_hex
};
let wif_private_key = check_encode_slice(&combined_version_and_private_key_hex_with_end_array);
wif_private_key
}
pub fn get_p2sh_address_from_script_hash(script_hash: &String, network: Network) -> String {
let p2sh_version_application_byte = "05";
let p2sh_testnet_version_application_byte = "c4";
let version_byte = match network {
Network::Mainnet => decode_hex(p2sh_version_application_byte).unwrap(),
Network::Testnet => decode_hex(p2sh_testnet_version_application_byte).unwrap(),
};
let script_hash_bytes = decode_hex(&script_hash).unwrap();
let script_hash_with_version_byte = concat_u8(&version_byte, &script_hash_bytes);
let address = check_encode_slice(&script_hash_with_version_byte);
address
}
pub fn get_p2sh_address_from_pubkey_hash(public_key_hash: &String, network: Network) -> String {
let prefix_bytes = decode_hex("0014").unwrap();
let public_key_hash_bytes = decode_hex(public_key_hash).unwrap();
let redeem_script = concat_u8(&prefix_bytes, &public_key_hash_bytes);
let redeem_script_sha256 = sha256::digest_bytes(&redeem_script);
let redeem_script_sha256_as_hex_array = decode_hex(&redeem_script_sha256).unwrap();
let redeem_script_ripemd160 = ripemd160::Hash::hash(&redeem_script_sha256_as_hex_array);
let hash160 = redeem_script_ripemd160.to_string();
return get_p2sh_address_from_script_hash(&hash160, network);
}
pub fn get_p2pkh_address_from_pubkey_hash(public_key_hash: &String, network: Network) -> String {
let p2pkh_version_application_byte = "00";
let p2pkh_testnet_version_application_byte = "6f";
let version_application_byte = match network {
Network::Mainnet => p2pkh_version_application_byte,
Network::Testnet => p2pkh_testnet_version_application_byte,
};
let hex_array = decode_hex(&public_key_hash).unwrap();
let version_array = decode_hex(version_application_byte).unwrap();
let a = concat_u8(&version_array, &hex_array);
let address = check_encode_slice(&a);
address
}
pub fn get_address_from_pub_key_hash(
public_key_hash: &String,
network: Network,
address_type: AddressType,
) -> String {
match address_type {
AddressType::P2PKH => get_p2pkh_address_from_pubkey_hash(public_key_hash, network),
AddressType::P2SH => get_p2sh_address_from_pubkey_hash(public_key_hash, network),
AddressType::P2WPKH => get_p2wpkh_address_from_pubkey_hash(public_key_hash, network),
AddressType::P2TR => {
todo!("Not sure if you can get pub key hash from a taproot address. Instead, use get address from public key, not hash")
}
}
}
pub fn get_bech32_address_from_witness_program(
witness_version: u8,
program_hex: &String,
network: Network,
) -> String {
let network_for_bech32_library = match network {
Network::Mainnet => bitcoin_bech32::constants::Network::Bitcoin,
Network::Testnet => bitcoin_bech32::constants::Network::Testnet,
};
let byte_array = decode_hex(&program_hex).unwrap();
let witness_program = WitnessProgram::new(
u5::try_from_u8(witness_version).unwrap(),
byte_array,
network_for_bech32_library,
)
.unwrap();
let address = witness_program.to_address();
address
}
pub fn get_p2tr_address_from_pubkey(public_key_hex: &String, network: Network) -> String {
let witness_version = 1;
let secp = Secp256k1::new();
let tweaked_x_only_public_key = get_tweaked_x_only_public_key_from_public_key(public_key_hex);
let address = get_bech32_address_from_witness_program(
witness_version,
&tweaked_x_only_public_key.to_string(),
network,
);
address
}
pub fn get_p2wpkh_address_from_pubkey_hash(pub_key_hash: &String, network: Network) -> String {
let witness_version = 0;
let address = get_bech32_address_from_witness_program(
witness_version,
&pub_key_hash.to_string(),
network,
);
address
}
pub fn get_tweaked_x_only_public_key_from_p2tr_address(address: &String) -> String {
let witness = WitnessProgram::from_address(address).unwrap();
encode_hex(&witness.program())
}
pub fn get_pubkey_hash_from_p2wpkh_address(address: &String) -> String {
let witness = WitnessProgram::from_address(address).unwrap();
encode_hex(&witness.program())
}
pub fn get_address_from_pub_key(
pub_key: &String,
network: Network,
address_type: AddressType,
) -> String {
match address_type {
AddressType::P2PKH | AddressType::P2SH | AddressType::P2WPKH => {
let pub_key_hash = get_public_key_hash_from_public_key(&pub_key);
let address = get_address_from_pub_key_hash(&pub_key_hash, network, address_type);
address
}
AddressType::P2TR => get_p2tr_address_from_pubkey(pub_key, network),
}
}
pub fn get_public_key_from_wif(wif: &String) -> String {
let private_key = convert_wif_to_private_key(&wif);
let public_key = get_public_key_from_private_key(&private_key, is_wif_compressed(&wif));
public_key
}
pub fn is_wif_compressed(wif: &String) -> bool {
let first_char_of_wif = wif.chars().nth(0).unwrap();
let is_compressed_wif = first_char_of_wif == 'K'
|| first_char_of_wif == 'L'
|| first_char_of_wif == 'M'
|| first_char_of_wif == 'c';
is_compressed_wif
}
pub fn get_public_key_from_private_key(private_key: &String, is_compressed: bool) -> String {
let secp = Secp256k1::new();
let secret_key = SecretKey::from_str(private_key).unwrap();
let public_key = if is_compressed {
secret_key.public_key(&secp).serialize().to_vec()
} else {
secret_key
.public_key(&secp)
.serialize_uncompressed()
.to_vec()
};
encode_hex(&public_key)
}
pub fn hash160_for_non_hex(non_hex_string_to_hash: &String) -> String {
let string_as_array = non_hex_string_to_hash.as_bytes();
let sha256 = sha256::digest_bytes(&string_as_array);
let sha256_as_hex_array = sha256.as_bytes();
let ripemd160 = ripemd160::Hash::hash(&sha256_as_hex_array);
ripemd160.to_string()
}
pub fn hash160_for_hex(hex_to_hash: &String) -> String {
let hex_array = decode_hex(hex_to_hash).unwrap();
let sha256 = sha256_hex(hex_to_hash);
let sha256_as_hex_array = decode_hex(&sha256).unwrap();
let public_key_ripemd160 = ripemd160::Hash::hash(&sha256_as_hex_array);
public_key_ripemd160.to_string()
}
pub fn get_tweaked_x_only_public_key_from_public_key(public_key_hex: &String) -> String {
let secp = Secp256k1::new();
let public_key =
secp256k1::PublicKey::from_str(&public_key_hex).expect("statistically impossible to hit");
let (untweaked_x_only_public_key, _parity) = public_key.x_only_public_key();
let merkle_root = None;
let tweak =
TapTweakHash::from_key_and_tweak(untweaked_x_only_public_key, merkle_root).to_scalar();
let (tweaked_x_only_public_key, _parity) = untweaked_x_only_public_key
.add_tweak(&secp, &tweak)
.expect("Tap tweak failed");
tweaked_x_only_public_key.to_string()
}
pub fn get_public_key_hash_from_public_key(public_key: &String) -> String {
hash160_for_hex(public_key)
}
pub fn get_script_hash_from_p2sh_address(address: &str) -> String {
if bitcoin_address::is_p2sh(&address.to_string()) {
let address_base58check_decoded = from_check(&address).unwrap();
let address_base58check_decoded_without_first_byte =
address_base58check_decoded.get(1..).unwrap();
let script_hash = encode_hex(&address_base58check_decoded_without_first_byte);
script_hash
} else {
panic!("Address is not p2sh: {}", address);
}
}
pub fn get_public_key_hash_from_non_bech_32_address(address: &String) -> String {
if bitcoin_address::is_legacy(&address.to_string()) {
let address_base58check_decoded = from_check(&address).unwrap();
let address_base58check_decoded_without_first_byte =
address_base58check_decoded.get(1..).unwrap();
let pub_key_hash = encode_hex(&address_base58check_decoded_without_first_byte);
pub_key_hash
} else {
panic!("Address must be legacy: {}", address);
}
}
pub fn get_public_key_hash_from_address(address: &String) -> String {
if bitcoin_address::is_legacy(address) {
get_public_key_hash_from_non_bech_32_address(address)
} else if bitcoin_address::is_segwit_native(address) {
get_pubkey_hash_from_p2wpkh_address(address)
} else if bitcoin_address::is_nested_segwit(address) {
panic!(
"Couldn't get public key hash from address ({}). Nested segwit addresses not supported. Instead, you should use get_script_hash_from_p2sh_address() function",
address
);
} else {
panic!("Couldn't get public key hash from address: {}", address);
}
}
pub fn convert_wif_to_private_key(wif: &String) -> String {
let is_compressed_wif = is_wif_compressed(wif);
let wif_base58check_decoded_result = from_check(&wif);
let wif_base58check_decoded = from_check(&wif).unwrap();
let wif_base58check_decoded_without_first_byte = wif_base58check_decoded.get(1..).unwrap();
let wif_base58check_decoded_without_first_byte_and_adjusted_for_compression =
if is_compressed_wif {
wif_base58check_decoded_without_first_byte
.get(..=(wif_base58check_decoded_without_first_byte.len() - 2))
.unwrap()
} else {
wif_base58check_decoded_without_first_byte
};
let wif_base58check_decoded_without_first_byte_and_adjusted_for_compression_hex =
encode_hex(wif_base58check_decoded_without_first_byte_and_adjusted_for_compression);
wif_base58check_decoded_without_first_byte_and_adjusted_for_compression_hex
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
}
}