firma 0.20.0

Firma is a library to create bitcoin multisig wallets with private keys stored on offline devices.
Documentation
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
//use crate::offline::decrypt::{decrypt, DecryptOptions, MaybeEncrypted};
use crate::offline::print::pretty_print;
use crate::*;
use bitcoin::blockdata::opcodes;
use bitcoin::blockdata::script::Builder;
use bitcoin::hashes::Hash;
use bitcoin::secp256k1::{self, Message, Secp256k1, SignOnly};
use bitcoin::util::bip143::SigHashCache;
use bitcoin::util::bip32::{DerivationPath, ExtendedPrivKey, ExtendedPubKey};
use bitcoin::{Network, Script, SigHashType, Transaction};
use log::{debug, info};
use serde::{Deserialize, Serialize};
use std::collections::{HashMap, HashSet};
use std::str::FromStr;
use structopt::StructOpt;

/// Sign a Partially Signed Bitcoin Transaction (PSBT) with a key.
#[derive(StructOpt, Debug, Serialize, Deserialize)]
pub struct SignOptions {
    /// Name of the key to use
    #[structopt(short, long)]
    pub key_name: String,

    /// Name of the wallet used, show if outputs are mine.
    #[structopt(short, long)]
    pub wallet_name: String,

    /// PSBT name to sign
    #[structopt(short, long)]
    pub psbt_name: String,

    /// derivations to consider if psbt doesn't contain HD paths
    #[structopt(short, long, default_value = "1000")]
    pub total_derivations: u32,

    /// Allow any derivations (to avoid ramson attacks, by default only 2 levels are allowed, and the first level must be 0 or 1)
    #[structopt(long)]
    pub allow_any_derivations: bool,
}

pub struct SignResult {
    signed: bool,
    added_paths: bool,
}

#[derive(Debug)]
struct PsbtSigner {
    pub psbt: BitcoinPsbt,
    xprv: ExtendedPrivKey,
    secp: Secp256k1<SignOnly>,
    network: Network, // even if network is included in xprv, regtest is equal to testnet there, so we need this
    derivations: u32,
    allow_any_derivations: bool,
}

/// extract field name in the PSBT extra field if present
pub fn get_psbt_name(psbt: &BitcoinPsbt) -> Option<String> {
    psbt.global.proprietary.get(&get_name_key()).map(|v| {
        std::str::from_utf8(v)
            .expect("PSBT name not utf8")
            .to_string()
    }) // TODO remove expect
}

pub fn find_or_create(psbt: &mut BitcoinPsbt, psbts: Vec<Psbt>) -> Result<String> {
    let txid = psbt.global.unsigned_tx.txid();

    for psbt in psbts.iter() {
        if txid == psbt.psbt()?.global.unsigned_tx.txid() {
            return Ok(psbt.id.name.to_string());
        }
    }

    let names: HashSet<_> = psbts.iter().map(|p| p.id.name.to_string()).collect();
    let mut counter = 0u32;
    loop {
        let new_name = format!("psbt-{}", counter);
        if !names.contains(&new_name) {
            info!("PSBT without name, giving one: {}", new_name);
            psbt.global
                .proprietary
                .insert(get_name_key(), new_name.as_bytes().to_vec());
            return Ok(new_name);
        }
        counter += 1;
    }
}

impl PsbtSigner {
    fn new(
        psbt: &BitcoinPsbt,
        xprv: ExtendedPrivKey,
        network: Network,
        derivations: u32,
        allow_any_derivations: bool,
    ) -> Result<Self> {
        let secp = Secp256k1::signing_only();
        check_compatibility(network, xprv.network)?;

        Ok(PsbtSigner {
            psbt: psbt.clone(),
            xprv,
            secp,
            derivations,
            network,
            allow_any_derivations,
        })
    }

    pub fn sign(&mut self) -> Result<SignResult> {
        let initial_inputs = self.psbt.inputs.clone();
        let added_paths = self.init_hd_keypath_if_absent()?;

        for (i, input) in self.psbt.inputs.clone().iter().enumerate() {
            debug!("sign input #{} {:?}", i, input);
            let is_segwit = input.witness_utxo.is_some();
            let non_witness_utxo = input
                .non_witness_utxo
                .as_ref()
                .ok_or(Error::MissingPrevoutTx)?;
            let prevout = self.psbt.global.unsigned_tx.input[i].previous_output;
            if non_witness_utxo.txid() != prevout.txid {
                return Err(Error::MismatchPrevoutHash);
            }
            if is_segwit {
                let witness_utxo = input
                    .clone()
                    .witness_utxo
                    .ok_or(Error::MissingUtxoAndNotFinalized)?;

                let script = match input.clone().redeem_script {
                    Some(script) => {
                        if witness_utxo.script_pubkey != script.to_p2sh() {
                            return Err("witness_utxo script_pubkey doesn't match the redeem script converted to p2sh".into());
                        }
                        script
                    }
                    None => witness_utxo.script_pubkey,
                };
                if script.is_v0_p2wpkh() {
                    let script = to_p2pkh(&script.as_bytes()[2..]);
                    if !script.is_p2pkh() {
                        return Err("it is not a p2pkh script".into());
                    }
                    self.sign_input(&script, i)?;
                } else {
                    let wit_script = input
                        .clone()
                        .witness_script
                        .expect("witness_script is none");
                    if script != wit_script.to_v0_p2wsh() {
                        return Err("script and witness script to v0 p2wsh doesn't match".into());
                    }
                    self.sign_input(&wit_script, i)?;
                }
            } else {
                let script_pubkey = non_witness_utxo.output[prevout.vout as usize]
                    .clone()
                    .script_pubkey;
                match input.redeem_script.clone() {
                    Some(redeem_script) => {
                        if script_pubkey != redeem_script.to_p2sh() {
                            let m = "script_pubkey differs from redeem script converted to p2sh";
                            return Err(m.into());
                        }
                        self.sign_input(&redeem_script, i)?;
                    }
                    None => {
                        self.sign_input(&script_pubkey, i)?;
                    }
                };
            }
        }
        let signed = self.psbt.inputs != initial_inputs;
        Ok(SignResult {
            signed,
            added_paths,
        })
    }

    fn init_hd_keypath_if_absent(&mut self) -> Result<bool> {
        // temp code for handling psbt generated from core without hd paths
        let outputs_empty = self
            .psbt
            .inputs
            .iter()
            .any(|i| i.bip32_derivation.is_empty());
        let inputs_empty = self
            .psbt
            .outputs
            .iter()
            .any(|o| o.bip32_derivation.is_empty());

        let mut added = false;
        if outputs_empty || inputs_empty {
            info!("Provided PSBT does not contain all HD key paths, trying to deduce them...");
            let mut keys = HashMap::new();
            for i in 0..=1 {
                let derivation_path = DerivationPath::from_str(&format!("m/{}", i))?;
                let first = self.xprv.derive_priv(&self.secp, &derivation_path)?;
                for j in 0..=self.derivations {
                    let derivation_path = DerivationPath::from_str(&format!("m/{}", j))?;
                    let derived = first.derive_priv(&self.secp, &derivation_path)?;
                    let derived_pubkey = ExtendedPubKey::from_private(&self.secp, &derived);
                    let complete_derivation_path =
                        DerivationPath::from_str(&format!("m/{}/{}", i, j))?;
                    keys.insert(
                        derived_pubkey.public_key,
                        (self.xprv.fingerprint(&self.secp), complete_derivation_path),
                    );
                }
            }

            for input in self.psbt.inputs.iter_mut() {
                if let Some(ref witness_script) = input.witness_script {
                    let script_keys = extract_pub_keys(witness_script)?;
                    for key in script_keys {
                        if keys.contains_key(&key) {
                            input
                                .bip32_derivation
                                .insert(key, keys.get(&key).ok_or(Error::MissingKey)?.clone());
                            added = true;
                        }
                    }
                }
            }

            for output in self.psbt.outputs.iter_mut() {
                if let Some(ref witness_script) = output.witness_script {
                    let script_keys = extract_pub_keys(witness_script)?;
                    for key in script_keys {
                        if keys.contains_key(&key) {
                            output
                                .bip32_derivation
                                .insert(key, keys.get(&key).ok_or(Error::MissingKey)?.clone());
                            added = true;
                        }
                    }
                }
            }
        }
        if added {
            info!("Added HD key paths\n");
        }
        Ok(added)
    }

    fn sign_input(&mut self, script: &Script, input_index: usize) -> Result<()> {
        debug!("sign_input #{} script:{:?}", input_index, script);
        let psbt_clone = self.psbt.clone();
        let mut message_to_sign = MessageToSign::new(&psbt_clone);
        let input = &mut self.psbt.inputs[input_index];
        let my_fing = self.xprv.fingerprint(&self.secp);

        for (pubkey, (fing, child)) in input.bip32_derivation.iter() {
            if fing != &my_fing {
                continue;
            }
            debug!("found key fingerprint {:?}", fing);

            if !self.allow_any_derivations {
                //TODO recheck
                let path_slice = child.as_ref();
                if path_slice.len() != 6 {
                    return Err(format!("{} only 6 derivation paths allowed", child).into());
                } else if !(path_slice[4] == 0.into() || path_slice[4] == 1.into()) {
                    return Err(
                        format!("{} second-last derivation must be Soft 0 or 1", child).into(),
                    );
                }
            }
            let privkey = self.xprv.derive_priv(&self.secp, &child)?;
            let derived_pubkey =
                secp256k1::PublicKey::from_secret_key(&self.secp, &privkey.private_key.key);
            if pubkey.key != derived_pubkey {
                return Err(
                    "pubkey derived and expected differs even if fingerprint matches!".into(),
                );
            }

            let (sighash, msg) = message_to_sign.hash(input_index, script)?;
            let key = &privkey.private_key.key;
            let signature = self.secp.sign(&msg, key);
            let mut signature = signature.serialize_der().to_vec();
            signature.push(sighash.as_u32() as u8); // TODO how to properly do this?
            match input.partial_sigs.get(pubkey) {
                Some(signature_already_there) => {
                    if &signature == signature_already_there {
                        return Err(
                            "This transaction already contains a signature from this key matching the one generated by us (RFC6979 complaint)".into(),
                        );
                    } else {
                        return Err(
                            "This transaction already contains a signature from this key DIFFERENT from the one generated by us (wrong, or NOT RFC6979 complaint)".into(),
                        );
                    }
                }
                None => {
                    input.partial_sigs.insert(*pubkey, signature);
                }
            }
        }
        Ok(())
    }

    fn pretty_print(&self, wallets: &[Wallet]) -> Result<PsbtPrettyPrint> {
        pretty_print(&self.psbt, self.network, wallets)
    }
}

pub struct MessageToSign<'a> {
    psbt: &'a BitcoinPsbt,
    cache: SigHashCache<&'a Transaction>,
}
impl<'a> MessageToSign<'a> {
    pub fn new(psbt: &'a BitcoinPsbt) -> Self {
        MessageToSign {
            psbt,
            cache: SigHashCache::new(&psbt.global.unsigned_tx),
        }
    }
    pub fn hash(&mut self, input_index: usize, script: &Script) -> Result<(SigHashType, Message)> {
        let input = &self.psbt.inputs[input_index];
        let (sig_hash_type, sig_hash);
        if input.witness_utxo.is_some() {
            let wutxo = input.witness_utxo.as_ref();
            let value = wutxo.ok_or(Error::MissingWitnessUtxo)?.value;
            sig_hash_type = input.sighash_type.unwrap_or(SigHashType::All);
            sig_hash = self
                .cache
                .signature_hash(input_index, script, value, sig_hash_type);
        } else {
            sig_hash_type = input.sighash_type.ok_or(Error::MissingSighash)?;
            sig_hash = self.psbt.global.unsigned_tx.signature_hash(
                input_index,
                script,
                sig_hash_type.as_u32(),
            );
        }
        let msg = Message::from_slice(&sig_hash.into_inner()[..])?;
        Ok((sig_hash_type, msg))
    }
}

impl OfflineContext {
    pub fn sign(&self, opt: &SignOptions) -> Result<PsbtPrettyPrint> {
        debug!("sign::start");
        let secret: MasterSecret = self.read(&opt.key_name)?;
        debug!("read secret key {}", secret.id.name);
        let public: DescriptorPublicKey = self.read(&opt.key_name)?;
        debug!("read public key {}", public.id.name);
        let wallet: Wallet = self.read(&opt.wallet_name)?;
        debug!("read wallet {}", wallet.id.name);
        let mut psbt: Psbt = self.read(&opt.psbt_name)?;
        debug!("read psbt {}", wallet.id.name);

        let mut psbt_signer = PsbtSigner::new(
            &psbt.psbt()?,
            secret.key,
            self.network,
            opt.total_derivations,
            opt.allow_any_derivations,
        )?;

        debug!("{:?}", psbt_signer);
        //TODO refuse to sign if my address has first level different from 0/1 and more than one level?
        let sign_result = psbt_signer.sign()?;
        let mut psbt_print = psbt_signer.pretty_print(&[wallet])?;

        if sign_result.added_paths {
            psbt_print.info.push("Added paths".to_string());
        }
        if sign_result.signed {
            psbt.set_psbt(&psbt_signer.psbt);
            self.write(&psbt)?;
            psbt_print.info.push("Added signatures".to_string());
        } else {
            psbt_print.info.push("No signature added".to_string());
        }

        Ok(psbt_print)
    }
}

pub fn to_p2pkh(pubkey_hash: &[u8]) -> Script {
    Builder::new()
        .push_opcode(opcodes::all::OP_DUP)
        .push_opcode(opcodes::all::OP_HASH160)
        .push_slice(pubkey_hash)
        .push_opcode(opcodes::all::OP_EQUALVERIFY)
        .push_opcode(opcodes::all::OP_CHECKSIG)
        .into_script()
}

#[cfg(test)]
mod tests {
    use crate::offline::sign::*;
    use crate::{psbt_from_base64, psbt_to_base64, BitcoinPsbt, Error, Psbt};
    use bitcoin::consensus::deserialize;
    use bitcoin::Transaction;
    use flate2::write::ZlibEncoder;
    use flate2::Compression;
    use std::io::Write;

    fn test_sign(
        psbt_to_sign: &mut BitcoinPsbt,
        psbt_signed: &BitcoinPsbt,
        xprv: &ExtendedPrivKey,
    ) -> Result<()> {
        let mut psbt_signer = PsbtSigner::new(psbt_to_sign, *xprv, xprv.network, 10, true)?;
        psbt_signer.sign()?;

        assert_eq!(
            psbt_to_base64(&psbt_signer.psbt).1,
            psbt_to_base64(psbt_signed).1
        );
        assert_eq!(&psbt_signer.psbt, psbt_signed);
        Ok(())
    }

    fn perc_diff_with_core(psbt: &BitcoinPsbt, core: usize) -> Result<bool> {
        let esteem = (estimate_weight(psbt)? / 4) as f64;
        let core = core as f64;
        let perc = ((esteem - core) / esteem).abs();
        Ok(perc < 0.1) // TODO reduce this 10% by improving estimation of the bip tx
    }

    fn extract_psbt(bytes: &[u8]) -> (Vec<u8>, BitcoinPsbt) {
        let psbt_json: Psbt = serde_json::from_slice(bytes).unwrap();
        psbt_from_base64(&psbt_json.psbt).unwrap()
    }

    #[test]
    fn test_compression() {
        let bytes = include_bytes!("../../test_data/sign/psbt_bip.json");
        let (psbt_ser, _) = extract_psbt(bytes);
        let mut e = ZlibEncoder::new(Vec::new(), Compression::best());
        e.write_all(&psbt_ser).unwrap();
        let compressed_bytes = e.finish().unwrap();
        assert_eq!(psbt_ser.len(), 903);
        assert_eq!(compressed_bytes.len(), 722);

        let bytes = include_bytes!("../../test_data/sign/psbt_bip.signed.json");
        let (psbt_ser, _) = extract_psbt(bytes);
        let mut e = ZlibEncoder::new(Vec::new(), Compression::best());
        e.write_all(&psbt_ser).unwrap();
        let compressed_bytes = e.finish().unwrap();
        assert_eq!(psbt_ser.len(), 1583);
        assert_eq!(compressed_bytes.len(), 1192);
    }

    #[test]
    fn test_wallet_sign_derive() {
        let secp = Secp256k1::verification_only();
        let x = ExtendedPubKey::from_str("tpubDFKHxokA8JTGedRPmkFvCJ8CB2zqcHt3zuP7BwNarwZEkrhRnGpPzC9KkdtGj9KvYdf3hBU8N3CMa43yWMiLuB5W3f95TncHgSZtTaH5TTN").unwrap();
        let p = DerivationPath::from_str("m/0/2147483647").unwrap();
        let derived = x.derive_pub(&secp, &p).unwrap().public_key;
        assert_eq!(
            "032ac316617e85be1e8ec0e73a4667298f374e49a4aa5971acb24337e5943bf2e3",
            derived.to_string()
        );
    }

    #[test]
    fn test_psbt() {
        let bytes = include_bytes!("../../test_data/sign/psbt_bip.signed.json");
        let (_, psbt_signed) = extract_psbt(bytes);
        let bytes = include_bytes!("../../test_data/sign/psbt_bip.json");
        let (_, mut psbt_to_sign) = extract_psbt(bytes);

        let bytes = include_bytes!("../../test_data/sign/psbt_bip.key");
        let key: crate::MasterSecret = serde_json::from_slice(bytes).unwrap();

        let tx1 = "0200000001aad73931018bd25f84ae400b68848be09db706eac2ac18298babee71ab656f8b0000000048473044022058f6fc7c6a33e1b31548d481c826c015bd30135aad42cd67790dab66d2ad243b02204a1ced2604c6735b6393e5b41691dd78b00f0c5942fb9f751856faa938157dba01feffffff0280f0fa020000000017a9140fb9463421696b82c833af241c78c17ddbde493487d0f20a270100000017a91429ca74f8a08f81999428185c97b5d852e4063f618765000000";
        let tx1: Transaction = deserialize(&hex::decode(tx1).unwrap()).unwrap();
        assert_eq!(
            format!("{}", tx1.txid()),
            "75ddabb27b8845f5247975c8a5ba7c6f336c4570708ebe230caf6db5217ae858"
        );

        let tx2 = "0200000000010158e87a21b56daf0c23be8e7070456c336f7cbaa5c8757924f545887bb2abdd7501000000171600145f275f436b09a8cc9a2eb2a2f528485c68a56323feffffff02d8231f1b0100000017a914aed962d6654f9a2b36608eb9d64d2b260db4f1118700c2eb0b0000000017a914b7f5faf40e3d40a5a459b1db3535f2b72fa921e88702483045022100a22edcc6e5bc511af4cc4ae0de0fcd75c7e04d8c1c3a8aa9d820ed4b967384ec02200642963597b9b1bc22c75e9f3e117284a962188bf5e8a74c895089046a20ad770121035509a48eb623e10aace8bfd0212fdb8a8e5af3c94b0b133b95e114cab89e4f7965000000";
        let tx2: Transaction = deserialize(&hex::decode(tx2).unwrap()).unwrap();
        assert_eq!(
            format!("{}", tx2.txid()),
            "1dea7cd05979072a3578cab271c02244ea8a090bbb46aa680a65ecd027048d83"
        );

        assert_eq!(
            bitcoin::consensus::serialize(&psbt_to_sign.global).len(),
            158
        );
        let inputs_len: usize = psbt_to_sign
            .inputs
            .iter()
            .map(|i| bitcoin::consensus::serialize(i).len())
            .sum();
        assert_eq!(inputs_len, 634);
        let outputs_len: usize = psbt_to_sign
            .outputs
            .iter()
            .map(|o| bitcoin::consensus::serialize(o).len())
            .sum();
        assert_eq!(outputs_len, 106);

        assert_eq!(
            bitcoin::consensus::serialize(&psbt_signed.global).len(),
            158
        );
        let inputs_len: usize = psbt_signed
            .inputs
            .iter()
            .map(|i| bitcoin::consensus::serialize(i).len())
            .sum();
        assert_eq!(inputs_len, 1314);
        let outputs_len: usize = psbt_signed
            .outputs
            .iter()
            .map(|o| bitcoin::consensus::serialize(o).len())
            .sum();
        assert_eq!(outputs_len, 106);

        let err = test_sign(&mut psbt_to_sign, &psbt_signed, &key.key);
        assert_matches!(err, Err(Error::MissingPrevoutTx));

        psbt_to_sign.inputs[1].non_witness_utxo = psbt_to_sign.inputs[0].non_witness_utxo.clone();
        assert_eq!(
            test_sign(&mut psbt_to_sign, &psbt_signed, &key.key)
                .unwrap_err()
                .to_string(),
            Error::MismatchPrevoutHash.to_string(),
        );

        let mut mut_psbt_signed = psbt_signed.clone();
        test_sign(&mut mut_psbt_signed, &psbt_signed, &key.key).unwrap_err();

        psbt_to_sign.inputs[1].non_witness_utxo = Some(tx2);
        test_sign(&mut psbt_to_sign, &psbt_signed, &key.key).unwrap();

        assert!(perc_diff_with_core(&psbt_to_sign, 462).unwrap()); // 462 is estimated_vsize from analyzepsbt

        let bytes = include_bytes!("../../test_data/sign/psbt_testnet.1.signed.json");
        let (_, mut psbt_1) = extract_psbt(bytes);
        let bytes = include_bytes!("../../test_data/sign/psbt_testnet.json");
        let (_, orig) = extract_psbt(bytes);
        let mut psbt_to_sign = orig.clone();
        let bytes = include_bytes!("../../test_data/sign/psbt_testnet.1.key");
        let key: crate::MasterSecret = serde_json::from_slice(bytes).unwrap();

        let err = test_sign(&mut psbt_to_sign, &psbt_1, &key.key);
        assert_matches!(err, Err(Error::MissingPrevoutTx));
        let tx_in = "020000000001019e60071916a88cf0f5b9c6f015b7f8eef3ab1ef6ca4929b7236ec74e693f36210000000023220020c3af1472a85b23206da9be4fbef18d0ce5fd965671110d722a816e892d2e5f33fdffffff02801a0600000000002200201148e93e9315e37dbed2121be5239257af35adc03ffdfc5d914b083afa44dab80e07a1010000000017a9142aaba9f43085c5a6f28b0d01a8ed4dbcc0e5ec4f87040047304402203fdaeafde5fc1d1838d4c431abf6672f4cfee996f932187b31a4e3dad04d7b9f0220247d2cee5aabceb029ee6a1809a821fd95aa3ff02627977cbac8d00ff5a4628901473044022026879e4c65462161e2805ca26d392b0aace13906ec5b4776cac99f5e2bfd49f4022072500f1e2818a6738c37b6cedb2fd0a16375df34ce145e3f8fbfef7b7bec99d401475221020ca0e815748c41087075f3840c1edd9400f4db031dbe948b1929b6a93c72386a21026471f666489f80aed63bbbdee4f09ffcd69b40900435633cef5f5a35bf00932752ae4ff21700";
        let tx_in: Transaction = deserialize(&hex::decode(tx_in).unwrap()).unwrap();
        psbt_to_sign.inputs[0].non_witness_utxo = Some(tx_in.clone());
        test_sign(&mut psbt_to_sign, &psbt_1, &key.key).unwrap();
        assert!(perc_diff_with_core(&psbt_to_sign, 192).unwrap());

        let bytes = include_bytes!("../../test_data/sign/psbt_testnet.2.signed.json");
        let (_, psbt_2) = extract_psbt(bytes);
        let bytes = include_bytes!("../../test_data/sign/psbt_testnet.2.key");
        let mut psbt_to_sign = orig.clone();
        let key: crate::MasterSecret = serde_json::from_slice(bytes).unwrap();

        let err = test_sign(&mut psbt_to_sign, &psbt_2, &key.key);
        assert_matches!(err, Err(Error::MissingPrevoutTx));
        psbt_to_sign.inputs[0].non_witness_utxo = Some(tx_in);
        test_sign(&mut psbt_to_sign, &psbt_2, &key.key).unwrap();

        let bytes = include_bytes!("../../test_data/sign/psbt_testnet.signed.json");
        let (psbt_complete_bytes, psbt_complete) = extract_psbt(bytes);

        psbt_1.merge(psbt_2).unwrap();

        assert_eq!(psbt_to_base64(&psbt_1).1, psbt_to_base64(&psbt_complete).1);
        assert_eq!(psbt_1, psbt_complete);
        assert_eq!(
            psbt_to_base64(&psbt_1).1,
            base64::encode(&psbt_complete_bytes)
        );
    }
}