1use bitcoin::blockdata::transaction::{Transaction, TxOut, TxIn, EcdsaSighashType};
16use bitcoin::blockdata::script::{Script, Builder};
17use bitcoin::blockdata::opcodes;
18use bitcoin::network::constants::Network;
19use bitcoin::util::bip32::{ExtendedPrivKey, ExtendedPubKey, ChildNumber};
20use bitcoin::util::sighash;
21
22use bitcoin::bech32::u5;
23use bitcoin::hashes::{Hash, HashEngine};
24use bitcoin::hashes::sha256::HashEngine as Sha256State;
25use bitcoin::hashes::sha256::Hash as Sha256;
26use bitcoin::hashes::sha256d::Hash as Sha256dHash;
27use bitcoin::hash_types::WPubkeyHash;
28
29use bitcoin::secp256k1::{SecretKey, PublicKey, Scalar};
30use bitcoin::secp256k1::{Secp256k1, ecdsa::Signature, Signing};
31use bitcoin::secp256k1::ecdh::SharedSecret;
32use bitcoin::secp256k1::ecdsa::RecoverableSignature;
33use bitcoin::{PackedLockTime, secp256k1, Sequence, Witness};
34
35use crate::util::transaction_utils;
36use crate::util::crypto::{hkdf_extract_expand_twice, sign};
37use crate::util::ser::{Writeable, Writer, Readable, ReadableArgs};
38#[cfg(anchors)]
39use crate::util::events::HTLCDescriptor;
40use crate::chain::transaction::OutPoint;
41use crate::ln::channel::ANCHOR_OUTPUT_VALUE_SATOSHI;
42use crate::ln::{chan_utils, PaymentPreimage};
43use crate::ln::chan_utils::{HTLCOutputInCommitment, make_funding_redeemscript, ChannelPublicKeys, HolderCommitmentTransaction, ChannelTransactionParameters, CommitmentTransaction, ClosingTransaction};
44use crate::ln::msgs::UnsignedChannelAnnouncement;
45use crate::ln::script::ShutdownScript;
46
47use crate::prelude::*;
48use core::convert::TryInto;
49use core::sync::atomic::{AtomicUsize, Ordering};
50use crate::io::{self, Error};
51use crate::ln::msgs::{DecodeError, MAX_VALUE_MSAT};
52use crate::util::invoice::construct_invoice_preimage;
53
54#[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
59pub struct KeyMaterial(pub [u8; 32]);
60
61#[derive(Clone, Debug, PartialEq, Eq)]
65pub struct DelayedPaymentOutputDescriptor {
66 pub outpoint: OutPoint,
68 pub per_commitment_point: PublicKey,
70 pub to_self_delay: u16,
73 pub output: TxOut,
75 pub revocation_pubkey: PublicKey,
78 pub channel_keys_id: [u8; 32],
81 pub channel_value_satoshis: u64,
83}
84impl DelayedPaymentOutputDescriptor {
85 pub const MAX_WITNESS_LENGTH: usize = 1 + 73 + 1 + chan_utils::REVOKEABLE_REDEEMSCRIPT_MAX_LENGTH + 1;
89}
90
91impl_writeable_tlv_based!(DelayedPaymentOutputDescriptor, {
92 (0, outpoint, required),
93 (2, per_commitment_point, required),
94 (4, to_self_delay, required),
95 (6, output, required),
96 (8, revocation_pubkey, required),
97 (10, channel_keys_id, required),
98 (12, channel_value_satoshis, required),
99});
100
101#[derive(Clone, Debug, PartialEq, Eq)]
105pub struct StaticPaymentOutputDescriptor {
106 pub outpoint: OutPoint,
108 pub output: TxOut,
110 pub channel_keys_id: [u8; 32],
113 pub channel_value_satoshis: u64,
115}
116impl StaticPaymentOutputDescriptor {
117 pub const MAX_WITNESS_LENGTH: usize = 1 + 73 + 34;
121}
122impl_writeable_tlv_based!(StaticPaymentOutputDescriptor, {
123 (0, outpoint, required),
124 (2, output, required),
125 (4, channel_keys_id, required),
126 (6, channel_value_satoshis, required),
127});
128
129#[derive(Clone, Debug, PartialEq, Eq)]
139pub enum SpendableOutputDescriptor {
140 StaticOutput {
149 outpoint: OutPoint,
151 output: TxOut,
153 },
154 DelayedPaymentOutput(DelayedPaymentOutputDescriptor),
193 StaticPaymentOutput(StaticPaymentOutputDescriptor),
203}
204
205impl_writeable_tlv_based_enum!(SpendableOutputDescriptor,
206 (0, StaticOutput) => {
207 (0, outpoint, required),
208 (2, output, required),
209 },
210;
211 (1, DelayedPaymentOutput),
212 (2, StaticPaymentOutput),
213);
214
215pub trait BaseSign {
223 fn get_per_commitment_point(&self, idx: u64, secp_ctx: &Secp256k1<secp256k1::All>) -> PublicKey;
227 fn release_commitment_secret(&self, idx: u64) -> [u8; 32];
237 fn validate_holder_commitment(&self, holder_tx: &HolderCommitmentTransaction,
251 preimages: Vec<PaymentPreimage>) -> Result<(), ()>;
252 fn pubkeys(&self) -> &ChannelPublicKeys;
254 fn channel_keys_id(&self) -> [u8; 32];
258 fn sign_counterparty_commitment(&self, commitment_tx: &CommitmentTransaction,
274 preimages: Vec<PaymentPreimage>, secp_ctx: &Secp256k1<secp256k1::All>
275 ) -> Result<(Signature, Vec<Signature>), ()>;
276 fn validate_counterparty_revocation(&self, idx: u64, secret: &SecretKey) -> Result<(), ()>;
281 fn sign_holder_commitment_and_htlcs(&self, commitment_tx: &HolderCommitmentTransaction,
298 secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()>;
299 #[cfg(any(test,feature = "unsafe_revoked_tx_signing"))]
304 fn unsafe_sign_holder_commitment_and_htlcs(&self, commitment_tx: &HolderCommitmentTransaction,
305 secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()>;
306 fn sign_justice_revoked_output(&self, justice_tx: &Transaction, input: usize, amount: u64,
321 per_commitment_key: &SecretKey, secp_ctx: &Secp256k1<secp256k1::All>
322 ) -> Result<Signature, ()>;
323 fn sign_justice_revoked_htlc(&self, justice_tx: &Transaction, input: usize, amount: u64,
342 per_commitment_key: &SecretKey, htlc: &HTLCOutputInCommitment,
343 secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()>;
344 #[cfg(anchors)]
345 fn sign_holder_htlc_transaction(&self, htlc_tx: &Transaction, input: usize,
353 htlc_descriptor: &HTLCDescriptor, secp_ctx: &Secp256k1<secp256k1::All>
354 ) -> Result<Signature, ()>;
355 fn sign_counterparty_htlc_transaction(&self, htlc_tx: &Transaction, input: usize, amount: u64,
373 per_commitment_point: &PublicKey, htlc: &HTLCOutputInCommitment,
374 secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()>;
375 fn sign_closing_transaction(&self, closing_tx: &ClosingTransaction,
380 secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()>;
381 fn sign_holder_anchor_input(
384 &self, anchor_tx: &Transaction, input: usize, secp_ctx: &Secp256k1<secp256k1::All>,
385 ) -> Result<Signature, ()>;
386 fn sign_channel_announcement(&self, msg: &UnsignedChannelAnnouncement, secp_ctx: &Secp256k1<secp256k1::All>)
396 -> Result<(Signature, Signature), ()>;
397 fn provide_channel_parameters(&mut self, channel_parameters: &ChannelTransactionParameters);
404}
405
406pub trait Sign: BaseSign + Writeable {}
414
415pub enum Recipient {
420 Node,
422 PhantomNode,
427}
428
429pub trait KeysInterface {
431 type Signer : Sign;
433 fn get_node_secret(&self, recipient: Recipient) -> Result<SecretKey, ()>;
442 fn get_node_id(&self, recipient: Recipient) -> Result<PublicKey, ()> {
452 let secp_ctx = Secp256k1::signing_only();
453 Ok(PublicKey::from_secret_key(&secp_ctx, &self.get_node_secret(recipient)?))
454 }
455 fn ecdh(&self, recipient: Recipient, other_key: &PublicKey, tweak: Option<&Scalar>) -> Result<SharedSecret, ()>;
463 fn get_destination_script(&self) -> Script;
468 fn get_shutdown_scriptpubkey(&self) -> ShutdownScript;
473 fn generate_channel_keys_id(&self, inbound: bool, channel_value_satoshis: u64, user_channel_id: u128) -> [u8; 32];
478 fn derive_channel_signer(&self, channel_value_satoshis: u64, channel_keys_id: [u8; 32]) -> Self::Signer;
485 fn get_secure_random_bytes(&self) -> [u8; 32];
491 fn read_chan_signer(&self, reader: &[u8]) -> Result<Self::Signer, DecodeError>;
505 fn sign_invoice(&self, hrp_bytes: &[u8], invoice_data: &[u5], receipient: Recipient) -> Result<RecoverableSignature, ()>;
515 fn get_inbound_payment_key_material(&self) -> KeyMaterial;
528}
529
530#[derive(Clone)]
531pub struct InMemorySigner {
536 pub funding_key: SecretKey,
539 pub revocation_base_key: SecretKey,
541 pub payment_key: SecretKey,
543 pub delayed_payment_base_key: SecretKey,
545 pub htlc_base_key: SecretKey,
547 pub commitment_seed: [u8; 32],
549 pub(crate) holder_channel_pubkeys: ChannelPublicKeys,
551 node_secret: SecretKey,
553 channel_parameters: Option<ChannelTransactionParameters>,
555 channel_value_satoshis: u64,
557 channel_keys_id: [u8; 32],
559}
560
561impl InMemorySigner {
562 pub fn new<C: Signing>(
564 secp_ctx: &Secp256k1<C>,
565 node_secret: SecretKey,
566 funding_key: SecretKey,
567 revocation_base_key: SecretKey,
568 payment_key: SecretKey,
569 delayed_payment_base_key: SecretKey,
570 htlc_base_key: SecretKey,
571 commitment_seed: [u8; 32],
572 channel_value_satoshis: u64,
573 channel_keys_id: [u8; 32],
574 ) -> InMemorySigner {
575 let holder_channel_pubkeys =
576 InMemorySigner::make_holder_keys(secp_ctx, &funding_key, &revocation_base_key,
577 &payment_key, &delayed_payment_base_key,
578 &htlc_base_key);
579 InMemorySigner {
580 funding_key,
581 revocation_base_key,
582 payment_key,
583 delayed_payment_base_key,
584 htlc_base_key,
585 commitment_seed,
586 node_secret,
587 channel_value_satoshis,
588 holder_channel_pubkeys,
589 channel_parameters: None,
590 channel_keys_id,
591 }
592 }
593
594 fn make_holder_keys<C: Signing>(secp_ctx: &Secp256k1<C>,
595 funding_key: &SecretKey,
596 revocation_base_key: &SecretKey,
597 payment_key: &SecretKey,
598 delayed_payment_base_key: &SecretKey,
599 htlc_base_key: &SecretKey) -> ChannelPublicKeys {
600 let from_secret = |s: &SecretKey| PublicKey::from_secret_key(secp_ctx, s);
601 ChannelPublicKeys {
602 funding_pubkey: from_secret(&funding_key),
603 revocation_basepoint: from_secret(&revocation_base_key),
604 payment_point: from_secret(&payment_key),
605 delayed_payment_basepoint: from_secret(&delayed_payment_base_key),
606 htlc_basepoint: from_secret(&htlc_base_key),
607 }
608 }
609
610 pub fn counterparty_pubkeys(&self) -> &ChannelPublicKeys { &self.get_channel_parameters().counterparty_parameters.as_ref().unwrap().pubkeys }
614 pub fn counterparty_selected_contest_delay(&self) -> u16 { self.get_channel_parameters().counterparty_parameters.as_ref().unwrap().selected_contest_delay }
620 pub fn holder_selected_contest_delay(&self) -> u16 { self.get_channel_parameters().holder_selected_contest_delay }
626 pub fn is_outbound(&self) -> bool { self.get_channel_parameters().is_outbound_from_holder }
630 pub fn funding_outpoint(&self) -> &OutPoint { self.get_channel_parameters().funding_outpoint.as_ref().unwrap() }
634 pub fn get_channel_parameters(&self) -> &ChannelTransactionParameters {
639 self.channel_parameters.as_ref().unwrap()
640 }
641 pub fn opt_anchors(&self) -> bool {
645 self.get_channel_parameters().opt_anchors.is_some()
646 }
647 pub fn sign_counterparty_payment_input<C: Signing>(&self, spend_tx: &Transaction, input_idx: usize, descriptor: &StaticPaymentOutputDescriptor, secp_ctx: &Secp256k1<C>) -> Result<Vec<Vec<u8>>, ()> {
656 if spend_tx.input.len() <= input_idx { return Err(()); }
661 if !spend_tx.input[input_idx].script_sig.is_empty() { return Err(()); }
662 if spend_tx.input[input_idx].previous_output != descriptor.outpoint.into_bitcoin_outpoint() { return Err(()); }
663
664 let remotepubkey = self.pubkeys().payment_point;
665 let witness_script = bitcoin::Address::p2pkh(&::bitcoin::PublicKey{compressed: true, inner: remotepubkey}, Network::Testnet).script_pubkey();
666 let sighash = hash_to_message!(&sighash::SighashCache::new(spend_tx).segwit_signature_hash(input_idx, &witness_script, descriptor.output.value, EcdsaSighashType::All).unwrap()[..]);
667 let remotesig = sign(secp_ctx, &sighash, &self.payment_key);
668 let payment_script = bitcoin::Address::p2wpkh(&::bitcoin::PublicKey{compressed: true, inner: remotepubkey}, Network::Bitcoin).unwrap().script_pubkey();
669
670 if payment_script != descriptor.output.script_pubkey { return Err(()); }
671
672 let mut witness = Vec::with_capacity(2);
673 witness.push(remotesig.serialize_der().to_vec());
674 witness[0].push(EcdsaSighashType::All as u8);
675 witness.push(remotepubkey.serialize().to_vec());
676 Ok(witness)
677 }
678
679 pub fn sign_dynamic_p2wsh_input<C: Signing>(&self, spend_tx: &Transaction, input_idx: usize, descriptor: &DelayedPaymentOutputDescriptor, secp_ctx: &Secp256k1<C>) -> Result<Vec<Vec<u8>>, ()> {
690 if spend_tx.input.len() <= input_idx { return Err(()); }
695 if !spend_tx.input[input_idx].script_sig.is_empty() { return Err(()); }
696 if spend_tx.input[input_idx].previous_output != descriptor.outpoint.into_bitcoin_outpoint() { return Err(()); }
697 if spend_tx.input[input_idx].sequence.0 != descriptor.to_self_delay as u32 { return Err(()); }
698
699 let delayed_payment_key = chan_utils::derive_private_key(&secp_ctx, &descriptor.per_commitment_point, &self.delayed_payment_base_key);
700 let delayed_payment_pubkey = PublicKey::from_secret_key(&secp_ctx, &delayed_payment_key);
701 let witness_script = chan_utils::get_revokeable_redeemscript(&descriptor.revocation_pubkey, descriptor.to_self_delay, &delayed_payment_pubkey);
702 let sighash = hash_to_message!(&sighash::SighashCache::new(spend_tx).segwit_signature_hash(input_idx, &witness_script, descriptor.output.value, EcdsaSighashType::All).unwrap()[..]);
703 let local_delayedsig = sign(secp_ctx, &sighash, &delayed_payment_key);
704 let payment_script = bitcoin::Address::p2wsh(&witness_script, Network::Bitcoin).script_pubkey();
705
706 if descriptor.output.script_pubkey != payment_script { return Err(()); }
707
708 let mut witness = Vec::with_capacity(3);
709 witness.push(local_delayedsig.serialize_der().to_vec());
710 witness[0].push(EcdsaSighashType::All as u8);
711 witness.push(vec!()); witness.push(witness_script.clone().into_bytes());
713 Ok(witness)
714 }
715}
716
717impl BaseSign for InMemorySigner {
718 fn get_per_commitment_point(&self, idx: u64, secp_ctx: &Secp256k1<secp256k1::All>) -> PublicKey {
719 let commitment_secret = SecretKey::from_slice(&chan_utils::build_commitment_secret(&self.commitment_seed, idx)).unwrap();
720 PublicKey::from_secret_key(secp_ctx, &commitment_secret)
721 }
722
723 fn release_commitment_secret(&self, idx: u64) -> [u8; 32] {
724 chan_utils::build_commitment_secret(&self.commitment_seed, idx)
725 }
726
727 fn validate_holder_commitment(&self, _holder_tx: &HolderCommitmentTransaction, _preimages: Vec<PaymentPreimage>) -> Result<(), ()> {
728 Ok(())
729 }
730
731 fn pubkeys(&self) -> &ChannelPublicKeys { &self.holder_channel_pubkeys }
732
733 fn channel_keys_id(&self) -> [u8; 32] { self.channel_keys_id }
734
735 fn sign_counterparty_commitment(&self, commitment_tx: &CommitmentTransaction, _preimages: Vec<PaymentPreimage>, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()> {
736 let trusted_tx = commitment_tx.trust();
737 let keys = trusted_tx.keys();
738
739 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
740 let channel_funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
741
742 let built_tx = trusted_tx.built_transaction();
743 let commitment_sig = built_tx.sign(&self.funding_key, &channel_funding_redeemscript, self.channel_value_satoshis, secp_ctx);
744 let commitment_txid = built_tx.txid;
745
746 let mut htlc_sigs = Vec::with_capacity(commitment_tx.htlcs().len());
747 for htlc in commitment_tx.htlcs() {
748 let channel_parameters = self.get_channel_parameters();
749 let htlc_tx = chan_utils::build_htlc_transaction(&commitment_txid, commitment_tx.feerate_per_kw(), self.holder_selected_contest_delay(), htlc, self.opt_anchors(), channel_parameters.opt_non_zero_fee_anchors.is_some(), &keys.broadcaster_delayed_payment_key, &keys.revocation_key);
750 let htlc_redeemscript = chan_utils::get_htlc_redeemscript(&htlc, self.opt_anchors(), &keys);
751 let htlc_sighashtype = if self.opt_anchors() { EcdsaSighashType::SinglePlusAnyoneCanPay } else { EcdsaSighashType::All };
752 let htlc_sighash = hash_to_message!(&sighash::SighashCache::new(&htlc_tx).segwit_signature_hash(0, &htlc_redeemscript, htlc.amount_msat / 1000, htlc_sighashtype).unwrap()[..]);
753 let holder_htlc_key = chan_utils::derive_private_key(&secp_ctx, &keys.per_commitment_point, &self.htlc_base_key);
754 htlc_sigs.push(sign(secp_ctx, &htlc_sighash, &holder_htlc_key));
755 }
756
757 Ok((commitment_sig, htlc_sigs))
758 }
759
760 fn validate_counterparty_revocation(&self, _idx: u64, _secret: &SecretKey) -> Result<(), ()> {
761 Ok(())
762 }
763
764 fn sign_holder_commitment_and_htlcs(&self, commitment_tx: &HolderCommitmentTransaction, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()> {
765 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
766 let funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
767 let trusted_tx = commitment_tx.trust();
768 let sig = trusted_tx.built_transaction().sign(&self.funding_key, &funding_redeemscript, self.channel_value_satoshis, secp_ctx);
769 let channel_parameters = self.get_channel_parameters();
770 let htlc_sigs = trusted_tx.get_htlc_sigs(&self.htlc_base_key, &channel_parameters.as_holder_broadcastable(), secp_ctx)?;
771 Ok((sig, htlc_sigs))
772 }
773
774 #[cfg(any(test,feature = "unsafe_revoked_tx_signing"))]
775 fn unsafe_sign_holder_commitment_and_htlcs(&self, commitment_tx: &HolderCommitmentTransaction, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()> {
776 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
777 let funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
778 let trusted_tx = commitment_tx.trust();
779 let sig = trusted_tx.built_transaction().sign(&self.funding_key, &funding_redeemscript, self.channel_value_satoshis, secp_ctx);
780 let channel_parameters = self.get_channel_parameters();
781 let htlc_sigs = trusted_tx.get_htlc_sigs(&self.htlc_base_key, &channel_parameters.as_holder_broadcastable(), secp_ctx)?;
782 Ok((sig, htlc_sigs))
783 }
784
785 fn sign_justice_revoked_output(&self, justice_tx: &Transaction, input: usize, amount: u64, per_commitment_key: &SecretKey, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()> {
786 let revocation_key = chan_utils::derive_private_revocation_key(&secp_ctx, &per_commitment_key, &self.revocation_base_key);
787 let per_commitment_point = PublicKey::from_secret_key(secp_ctx, &per_commitment_key);
788 let revocation_pubkey = chan_utils::derive_public_revocation_key(&secp_ctx, &per_commitment_point, &self.pubkeys().revocation_basepoint);
789 let witness_script = {
790 let counterparty_delayedpubkey = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.counterparty_pubkeys().delayed_payment_basepoint);
791 chan_utils::get_revokeable_redeemscript(&revocation_pubkey, self.holder_selected_contest_delay(), &counterparty_delayedpubkey)
792 };
793 let mut sighash_parts = sighash::SighashCache::new(justice_tx);
794 let sighash = hash_to_message!(&sighash_parts.segwit_signature_hash(input, &witness_script, amount, EcdsaSighashType::All).unwrap()[..]);
795 return Ok(sign(secp_ctx, &sighash, &revocation_key))
796 }
797
798 fn sign_justice_revoked_htlc(&self, justice_tx: &Transaction, input: usize, amount: u64, per_commitment_key: &SecretKey, htlc: &HTLCOutputInCommitment, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()> {
799 let revocation_key = chan_utils::derive_private_revocation_key(&secp_ctx, &per_commitment_key, &self.revocation_base_key);
800 let per_commitment_point = PublicKey::from_secret_key(secp_ctx, &per_commitment_key);
801 let revocation_pubkey = chan_utils::derive_public_revocation_key(&secp_ctx, &per_commitment_point, &self.pubkeys().revocation_basepoint);
802 let witness_script = {
803 let counterparty_htlcpubkey = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.counterparty_pubkeys().htlc_basepoint);
804 let holder_htlcpubkey = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.pubkeys().htlc_basepoint);
805 chan_utils::get_htlc_redeemscript_with_explicit_keys(&htlc, self.opt_anchors(), &counterparty_htlcpubkey, &holder_htlcpubkey, &revocation_pubkey)
806 };
807 let mut sighash_parts = sighash::SighashCache::new(justice_tx);
808 let sighash = hash_to_message!(&sighash_parts.segwit_signature_hash(input, &witness_script, amount, EcdsaSighashType::All).unwrap()[..]);
809 return Ok(sign(secp_ctx, &sighash, &revocation_key))
810 }
811
812 #[cfg(anchors)]
813 fn sign_holder_htlc_transaction(
814 &self, htlc_tx: &Transaction, input: usize, htlc_descriptor: &HTLCDescriptor,
815 secp_ctx: &Secp256k1<secp256k1::All>
816 ) -> Result<Signature, ()> {
817 let per_commitment_point = self.get_per_commitment_point(
818 htlc_descriptor.per_commitment_number, &secp_ctx
819 );
820 let witness_script = htlc_descriptor.witness_script(&per_commitment_point, secp_ctx);
821 let sighash = &sighash::SighashCache::new(&*htlc_tx).segwit_signature_hash(
822 input, &witness_script, htlc_descriptor.htlc.amount_msat / 1000, EcdsaSighashType::All
823 ).map_err(|_| ())?;
824 let our_htlc_private_key = chan_utils::derive_private_key(
825 &secp_ctx, &per_commitment_point, &self.htlc_base_key
826 );
827 Ok(sign(&secp_ctx, &hash_to_message!(sighash), &our_htlc_private_key))
828 }
829
830 fn sign_counterparty_htlc_transaction(&self, htlc_tx: &Transaction, input: usize, amount: u64, per_commitment_point: &PublicKey, htlc: &HTLCOutputInCommitment, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()> {
831 let htlc_key = chan_utils::derive_private_key(&secp_ctx, &per_commitment_point, &self.htlc_base_key);
832 let revocation_pubkey = chan_utils::derive_public_revocation_key(&secp_ctx, &per_commitment_point, &self.pubkeys().revocation_basepoint);
833 let counterparty_htlcpubkey = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.counterparty_pubkeys().htlc_basepoint);
834 let htlcpubkey = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.pubkeys().htlc_basepoint);
835 let witness_script = chan_utils::get_htlc_redeemscript_with_explicit_keys(&htlc, self.opt_anchors(), &counterparty_htlcpubkey, &htlcpubkey, &revocation_pubkey);
836 let mut sighash_parts = sighash::SighashCache::new(htlc_tx);
837 let sighash = hash_to_message!(&sighash_parts.segwit_signature_hash(input, &witness_script, amount, EcdsaSighashType::All).unwrap()[..]);
838 Ok(sign(secp_ctx, &sighash, &htlc_key))
839 }
840
841 fn sign_closing_transaction(&self, closing_tx: &ClosingTransaction, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()> {
842 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
843 let channel_funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
844 Ok(closing_tx.trust().sign(&self.funding_key, &channel_funding_redeemscript, self.channel_value_satoshis, secp_ctx))
845 }
846
847 fn sign_holder_anchor_input(
848 &self, anchor_tx: &Transaction, input: usize, secp_ctx: &Secp256k1<secp256k1::All>,
849 ) -> Result<Signature, ()> {
850 let witness_script = chan_utils::get_anchor_redeemscript(&self.holder_channel_pubkeys.funding_pubkey);
851 let sighash = sighash::SighashCache::new(&*anchor_tx).segwit_signature_hash(
852 input, &witness_script, ANCHOR_OUTPUT_VALUE_SATOSHI, EcdsaSighashType::All,
853 ).unwrap();
854 Ok(sign(secp_ctx, &hash_to_message!(&sighash[..]), &self.funding_key))
855 }
856
857 fn sign_channel_announcement(&self, msg: &UnsignedChannelAnnouncement, secp_ctx: &Secp256k1<secp256k1::All>)
858 -> Result<(Signature, Signature), ()> {
859 let msghash = hash_to_message!(&Sha256dHash::hash(&msg.encode()[..])[..]);
860 Ok((sign(secp_ctx, &msghash, &self.node_secret), sign(secp_ctx, &msghash, &self.funding_key)))
861 }
862
863 fn provide_channel_parameters(&mut self, channel_parameters: &ChannelTransactionParameters) {
864 assert!(self.channel_parameters.is_none() || self.channel_parameters.as_ref().unwrap() == channel_parameters);
865 if self.channel_parameters.is_some() {
866 return;
868 }
869 assert!(channel_parameters.is_populated(), "Channel parameters must be fully populated");
870 self.channel_parameters = Some(channel_parameters.clone());
871 }
872}
873
874const SERIALIZATION_VERSION: u8 = 1;
875
876const MIN_SERIALIZATION_VERSION: u8 = 1;
877
878impl Sign for InMemorySigner {}
879
880impl Writeable for InMemorySigner {
881 fn write<W: Writer>(&self, writer: &mut W) -> Result<(), Error> {
882 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
883
884 self.funding_key.write(writer)?;
885 self.revocation_base_key.write(writer)?;
886 self.payment_key.write(writer)?;
887 self.delayed_payment_base_key.write(writer)?;
888 self.htlc_base_key.write(writer)?;
889 self.commitment_seed.write(writer)?;
890 self.channel_parameters.write(writer)?;
891 self.channel_value_satoshis.write(writer)?;
892 self.channel_keys_id.write(writer)?;
893
894 write_tlv_fields!(writer, {});
895
896 Ok(())
897 }
898}
899
900impl ReadableArgs<SecretKey> for InMemorySigner {
901 fn read<R: io::Read>(reader: &mut R, node_secret: SecretKey) -> Result<Self, DecodeError> {
902 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
903
904 let funding_key = Readable::read(reader)?;
905 let revocation_base_key = Readable::read(reader)?;
906 let payment_key = Readable::read(reader)?;
907 let delayed_payment_base_key = Readable::read(reader)?;
908 let htlc_base_key = Readable::read(reader)?;
909 let commitment_seed = Readable::read(reader)?;
910 let counterparty_channel_data = Readable::read(reader)?;
911 let channel_value_satoshis = Readable::read(reader)?;
912 let secp_ctx = Secp256k1::signing_only();
913 let holder_channel_pubkeys =
914 InMemorySigner::make_holder_keys(&secp_ctx, &funding_key, &revocation_base_key,
915 &payment_key, &delayed_payment_base_key, &htlc_base_key);
916 let keys_id = Readable::read(reader)?;
917
918 read_tlv_fields!(reader, {});
919
920 Ok(InMemorySigner {
921 funding_key,
922 revocation_base_key,
923 payment_key,
924 delayed_payment_base_key,
925 htlc_base_key,
926 node_secret,
927 commitment_seed,
928 channel_value_satoshis,
929 holder_channel_pubkeys,
930 channel_parameters: counterparty_channel_data,
931 channel_keys_id: keys_id,
932 })
933 }
934}
935
936pub struct KeysManager {
950 secp_ctx: Secp256k1<secp256k1::All>,
951 node_secret: SecretKey,
952 node_id: PublicKey,
953 inbound_payment_key: KeyMaterial,
954 destination_script: Script,
955 shutdown_pubkey: PublicKey,
956 channel_master_key: ExtendedPrivKey,
957 channel_child_index: AtomicUsize,
958
959 rand_bytes_master_key: ExtendedPrivKey,
960 rand_bytes_child_index: AtomicUsize,
961 rand_bytes_unique_start: Sha256State,
962
963 seed: [u8; 32],
964 starting_time_secs: u64,
965 starting_time_nanos: u32,
966}
967
968impl KeysManager {
969 pub fn new(seed: &[u8; 32], starting_time_secs: u64, starting_time_nanos: u32) -> Self {
987 let secp_ctx = Secp256k1::new();
988 match ExtendedPrivKey::new_master(Network::Testnet, seed) {
990 Ok(master_key) => {
991 let node_secret = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(0).unwrap()).expect("Your RNG is busted").private_key;
992 let node_id = PublicKey::from_secret_key(&secp_ctx, &node_secret);
993 let destination_script = match master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(1).unwrap()) {
994 Ok(destination_key) => {
995 let wpubkey_hash = WPubkeyHash::hash(&ExtendedPubKey::from_priv(&secp_ctx, &destination_key).to_pub().to_bytes());
996 Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0)
997 .push_slice(&wpubkey_hash.into_inner())
998 .into_script()
999 },
1000 Err(_) => panic!("Your RNG is busted"),
1001 };
1002 let shutdown_pubkey = match master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(2).unwrap()) {
1003 Ok(shutdown_key) => ExtendedPubKey::from_priv(&secp_ctx, &shutdown_key).public_key,
1004 Err(_) => panic!("Your RNG is busted"),
1005 };
1006 let channel_master_key = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(3).unwrap()).expect("Your RNG is busted");
1007 let rand_bytes_master_key = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(4).unwrap()).expect("Your RNG is busted");
1008 let inbound_payment_key: SecretKey = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(5).unwrap()).expect("Your RNG is busted").private_key;
1009 let mut inbound_pmt_key_bytes = [0; 32];
1010 inbound_pmt_key_bytes.copy_from_slice(&inbound_payment_key[..]);
1011
1012 let mut rand_bytes_unique_start = Sha256::engine();
1013 rand_bytes_unique_start.input(&starting_time_secs.to_be_bytes());
1014 rand_bytes_unique_start.input(&starting_time_nanos.to_be_bytes());
1015 rand_bytes_unique_start.input(seed);
1016
1017 let mut res = KeysManager {
1018 secp_ctx,
1019 node_secret,
1020 node_id,
1021 inbound_payment_key: KeyMaterial(inbound_pmt_key_bytes),
1022
1023 destination_script,
1024 shutdown_pubkey,
1025
1026 channel_master_key,
1027 channel_child_index: AtomicUsize::new(0),
1028
1029 rand_bytes_master_key,
1030 rand_bytes_child_index: AtomicUsize::new(0),
1031 rand_bytes_unique_start,
1032
1033 seed: *seed,
1034 starting_time_secs,
1035 starting_time_nanos,
1036 };
1037 let secp_seed = res.get_secure_random_bytes();
1038 res.secp_ctx.seeded_randomize(&secp_seed);
1039 res
1040 },
1041 Err(_) => panic!("Your rng is busted"),
1042 }
1043 }
1044 pub fn derive_channel_keys(&self, channel_value_satoshis: u64, params: &[u8; 32]) -> InMemorySigner {
1046 let chan_id = u64::from_be_bytes(params[0..8].try_into().unwrap());
1047 let mut unique_start = Sha256::engine();
1048 unique_start.input(params);
1049 unique_start.input(&self.seed);
1050
1051 let child_privkey = self.channel_master_key.ckd_priv(&self.secp_ctx, ChildNumber::from_hardened_idx(chan_id as u32).expect("key space exhausted")).expect("Your RNG is busted");
1055 unique_start.input(&child_privkey.private_key[..]);
1056
1057 let seed = Sha256::from_engine(unique_start).into_inner();
1058
1059 let commitment_seed = {
1060 let mut sha = Sha256::engine();
1061 sha.input(&seed);
1062 sha.input(&b"commitment seed"[..]);
1063 Sha256::from_engine(sha).into_inner()
1064 };
1065 macro_rules! key_step {
1066 ($info: expr, $prev_key: expr) => {{
1067 let mut sha = Sha256::engine();
1068 sha.input(&seed);
1069 sha.input(&$prev_key[..]);
1070 sha.input(&$info[..]);
1071 SecretKey::from_slice(&Sha256::from_engine(sha).into_inner()).expect("SHA-256 is busted")
1072 }}
1073 }
1074 let funding_key = key_step!(b"funding key", commitment_seed);
1075 let revocation_base_key = key_step!(b"revocation base key", funding_key);
1076 let payment_key = key_step!(b"payment key", revocation_base_key);
1077 let delayed_payment_base_key = key_step!(b"delayed payment base key", payment_key);
1078 let htlc_base_key = key_step!(b"HTLC base key", delayed_payment_base_key);
1079
1080 InMemorySigner::new(
1081 &self.secp_ctx,
1082 self.node_secret,
1083 funding_key,
1084 revocation_base_key,
1085 payment_key,
1086 delayed_payment_base_key,
1087 htlc_base_key,
1088 commitment_seed,
1089 channel_value_satoshis,
1090 params.clone(),
1091 )
1092 }
1093
1094 pub fn spend_spendable_outputs<C: Signing>(&self, descriptors: &[&SpendableOutputDescriptor], outputs: Vec<TxOut>, change_destination_script: Script, feerate_sat_per_1000_weight: u32, secp_ctx: &Secp256k1<C>) -> Result<Transaction, ()> {
1107 let mut input = Vec::new();
1108 let mut input_value = 0;
1109 let mut witness_weight = 0;
1110 let mut output_set = HashSet::with_capacity(descriptors.len());
1111 for outp in descriptors {
1112 match outp {
1113 SpendableOutputDescriptor::StaticPaymentOutput(descriptor) => {
1114 input.push(TxIn {
1115 previous_output: descriptor.outpoint.into_bitcoin_outpoint(),
1116 script_sig: Script::new(),
1117 sequence: Sequence::ZERO,
1118 witness: Witness::new(),
1119 });
1120 witness_weight += StaticPaymentOutputDescriptor::MAX_WITNESS_LENGTH;
1121 input_value += descriptor.output.value;
1122 if !output_set.insert(descriptor.outpoint) { return Err(()); }
1123 },
1124 SpendableOutputDescriptor::DelayedPaymentOutput(descriptor) => {
1125 input.push(TxIn {
1126 previous_output: descriptor.outpoint.into_bitcoin_outpoint(),
1127 script_sig: Script::new(),
1128 sequence: Sequence(descriptor.to_self_delay as u32),
1129 witness: Witness::new(),
1130 });
1131 witness_weight += DelayedPaymentOutputDescriptor::MAX_WITNESS_LENGTH;
1132 input_value += descriptor.output.value;
1133 if !output_set.insert(descriptor.outpoint) { return Err(()); }
1134 },
1135 SpendableOutputDescriptor::StaticOutput { ref outpoint, ref output } => {
1136 input.push(TxIn {
1137 previous_output: outpoint.into_bitcoin_outpoint(),
1138 script_sig: Script::new(),
1139 sequence: Sequence::ZERO,
1140 witness: Witness::new(),
1141 });
1142 witness_weight += 1 + 73 + 34;
1143 input_value += output.value;
1144 if !output_set.insert(*outpoint) { return Err(()); }
1145 }
1146 }
1147 if input_value > MAX_VALUE_MSAT / 1000 { return Err(()); }
1148 }
1149 let mut spend_tx = Transaction {
1150 version: 2,
1151 lock_time: PackedLockTime(0),
1152 input,
1153 output: outputs,
1154 };
1155 let expected_max_weight =
1156 transaction_utils::maybe_add_change_output(&mut spend_tx, input_value, witness_weight, feerate_sat_per_1000_weight, change_destination_script)?;
1157
1158 let mut keys_cache: Option<(InMemorySigner, [u8; 32])> = None;
1159 let mut input_idx = 0;
1160 for outp in descriptors {
1161 match outp {
1162 SpendableOutputDescriptor::StaticPaymentOutput(descriptor) => {
1163 if keys_cache.is_none() || keys_cache.as_ref().unwrap().1 != descriptor.channel_keys_id {
1164 keys_cache = Some((
1165 self.derive_channel_keys(descriptor.channel_value_satoshis, &descriptor.channel_keys_id),
1166 descriptor.channel_keys_id));
1167 }
1168 spend_tx.input[input_idx].witness = Witness::from_vec(keys_cache.as_ref().unwrap().0.sign_counterparty_payment_input(&spend_tx, input_idx, &descriptor, &secp_ctx)?);
1169 },
1170 SpendableOutputDescriptor::DelayedPaymentOutput(descriptor) => {
1171 if keys_cache.is_none() || keys_cache.as_ref().unwrap().1 != descriptor.channel_keys_id {
1172 keys_cache = Some((
1173 self.derive_channel_keys(descriptor.channel_value_satoshis, &descriptor.channel_keys_id),
1174 descriptor.channel_keys_id));
1175 }
1176 spend_tx.input[input_idx].witness = Witness::from_vec(keys_cache.as_ref().unwrap().0.sign_dynamic_p2wsh_input(&spend_tx, input_idx, &descriptor, &secp_ctx)?);
1177 },
1178 SpendableOutputDescriptor::StaticOutput { ref output, .. } => {
1179 let derivation_idx = if output.script_pubkey == self.destination_script {
1180 1
1181 } else {
1182 2
1183 };
1184 let secret = {
1185 match ExtendedPrivKey::new_master(Network::Testnet, &self.seed) {
1187 Ok(master_key) => {
1188 match master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(derivation_idx).expect("key space exhausted")) {
1189 Ok(key) => key,
1190 Err(_) => panic!("Your RNG is busted"),
1191 }
1192 }
1193 Err(_) => panic!("Your rng is busted"),
1194 }
1195 };
1196 let pubkey = ExtendedPubKey::from_priv(&secp_ctx, &secret).to_pub();
1197 if derivation_idx == 2 {
1198 assert_eq!(pubkey.inner, self.shutdown_pubkey);
1199 }
1200 let witness_script = bitcoin::Address::p2pkh(&pubkey, Network::Testnet).script_pubkey();
1201 let payment_script = bitcoin::Address::p2wpkh(&pubkey, Network::Testnet).expect("uncompressed key found").script_pubkey();
1202
1203 if payment_script != output.script_pubkey { return Err(()); };
1204
1205 let sighash = hash_to_message!(&sighash::SighashCache::new(&spend_tx).segwit_signature_hash(input_idx, &witness_script, output.value, EcdsaSighashType::All).unwrap()[..]);
1206 let sig = sign(secp_ctx, &sighash, &secret.private_key);
1207 let mut sig_ser = sig.serialize_der().to_vec();
1208 sig_ser.push(EcdsaSighashType::All as u8);
1209 spend_tx.input[input_idx].witness.push(sig_ser);
1210 spend_tx.input[input_idx].witness.push(pubkey.inner.serialize().to_vec());
1211 },
1212 }
1213 input_idx += 1;
1214 }
1215
1216 debug_assert!(expected_max_weight >= spend_tx.weight());
1217 debug_assert!(expected_max_weight <= spend_tx.weight() + descriptors.len() * 3);
1220
1221 Ok(spend_tx)
1222 }
1223}
1224
1225impl KeysInterface for KeysManager {
1226 type Signer = InMemorySigner;
1227
1228 fn get_node_secret(&self, recipient: Recipient) -> Result<SecretKey, ()> {
1229 match recipient {
1230 Recipient::Node => Ok(self.node_secret.clone()),
1231 Recipient::PhantomNode => Err(())
1232 }
1233 }
1234
1235 fn get_node_id(&self, recipient: Recipient) -> Result<PublicKey, ()> {
1236 match recipient {
1237 Recipient::Node => Ok(self.node_id.clone()),
1238 Recipient::PhantomNode => Err(())
1239 }
1240 }
1241
1242 fn ecdh(&self, recipient: Recipient, other_key: &PublicKey, tweak: Option<&Scalar>) -> Result<SharedSecret, ()> {
1243 let mut node_secret = self.get_node_secret(recipient)?;
1244 if let Some(tweak) = tweak {
1245 node_secret = node_secret.mul_tweak(tweak).map_err(|_| ())?;
1246 }
1247 Ok(SharedSecret::new(other_key, &node_secret))
1248 }
1249
1250 fn get_inbound_payment_key_material(&self) -> KeyMaterial {
1251 self.inbound_payment_key.clone()
1252 }
1253
1254 fn get_destination_script(&self) -> Script {
1255 self.destination_script.clone()
1256 }
1257
1258 fn get_shutdown_scriptpubkey(&self) -> ShutdownScript {
1259 ShutdownScript::new_p2wpkh_from_pubkey(self.shutdown_pubkey.clone())
1260 }
1261
1262 fn generate_channel_keys_id(&self, _inbound: bool, _channel_value_satoshis: u64, user_channel_id: u128) -> [u8; 32] {
1263 let child_idx = self.channel_child_index.fetch_add(1, Ordering::AcqRel);
1264 assert!(child_idx <= core::u32::MAX as usize);
1265 let mut id = [0; 32];
1266 id[0..4].copy_from_slice(&(child_idx as u32).to_be_bytes());
1267 id[4..8].copy_from_slice(&self.starting_time_nanos.to_be_bytes());
1268 id[8..16].copy_from_slice(&self.starting_time_secs.to_be_bytes());
1269 id[16..32].copy_from_slice(&user_channel_id.to_be_bytes());
1270 id
1271 }
1272
1273 fn derive_channel_signer(&self, channel_value_satoshis: u64, channel_keys_id: [u8; 32]) -> Self::Signer {
1274 self.derive_channel_keys(channel_value_satoshis, &channel_keys_id)
1275 }
1276
1277 fn get_secure_random_bytes(&self) -> [u8; 32] {
1278 let mut sha = self.rand_bytes_unique_start.clone();
1279
1280 let child_ix = self.rand_bytes_child_index.fetch_add(1, Ordering::AcqRel);
1281 let child_privkey = self.rand_bytes_master_key.ckd_priv(&self.secp_ctx, ChildNumber::from_hardened_idx(child_ix as u32).expect("key space exhausted")).expect("Your RNG is busted");
1282 sha.input(&child_privkey.private_key[..]);
1283
1284 sha.input(b"Unique Secure Random Bytes Salt");
1285 Sha256::from_engine(sha).into_inner()
1286 }
1287
1288 fn read_chan_signer(&self, reader: &[u8]) -> Result<Self::Signer, DecodeError> {
1289 InMemorySigner::read(&mut io::Cursor::new(reader), self.node_secret.clone())
1290 }
1291
1292 fn sign_invoice(&self, hrp_bytes: &[u8], invoice_data: &[u5], recipient: Recipient) -> Result<RecoverableSignature, ()> {
1293 let preimage = construct_invoice_preimage(&hrp_bytes, &invoice_data);
1294 let secret = match recipient {
1295 Recipient::Node => self.get_node_secret(Recipient::Node)?,
1296 Recipient::PhantomNode => return Err(()),
1297 };
1298 Ok(self.secp_ctx.sign_ecdsa_recoverable(&hash_to_message!(&Sha256::hash(&preimage)), &secret))
1299 }
1300}
1301
1302pub struct PhantomKeysManager {
1324 inner: KeysManager,
1325 inbound_payment_key: KeyMaterial,
1326 phantom_secret: SecretKey,
1327 phantom_node_id: PublicKey,
1328}
1329
1330impl KeysInterface for PhantomKeysManager {
1331 type Signer = InMemorySigner;
1332
1333 fn get_node_secret(&self, recipient: Recipient) -> Result<SecretKey, ()> {
1334 match recipient {
1335 Recipient::Node => self.inner.get_node_secret(Recipient::Node),
1336 Recipient::PhantomNode => Ok(self.phantom_secret.clone()),
1337 }
1338 }
1339
1340 fn get_node_id(&self, recipient: Recipient) -> Result<PublicKey, ()> {
1341 match recipient {
1342 Recipient::Node => self.inner.get_node_id(Recipient::Node),
1343 Recipient::PhantomNode => Ok(self.phantom_node_id.clone()),
1344 }
1345 }
1346
1347 fn ecdh(&self, recipient: Recipient, other_key: &PublicKey, tweak: Option<&Scalar>) -> Result<SharedSecret, ()> {
1348 let mut node_secret = self.get_node_secret(recipient)?;
1349 if let Some(tweak) = tweak {
1350 node_secret = node_secret.mul_tweak(tweak).map_err(|_| ())?;
1351 }
1352 Ok(SharedSecret::new(other_key, &node_secret))
1353 }
1354
1355 fn get_inbound_payment_key_material(&self) -> KeyMaterial {
1356 self.inbound_payment_key.clone()
1357 }
1358
1359 fn get_destination_script(&self) -> Script {
1360 self.inner.get_destination_script()
1361 }
1362
1363 fn get_shutdown_scriptpubkey(&self) -> ShutdownScript {
1364 self.inner.get_shutdown_scriptpubkey()
1365 }
1366
1367 fn generate_channel_keys_id(&self, inbound: bool, channel_value_satoshis: u64, user_channel_id: u128) -> [u8; 32] {
1368 self.inner.generate_channel_keys_id(inbound, channel_value_satoshis, user_channel_id)
1369 }
1370
1371 fn derive_channel_signer(&self, channel_value_satoshis: u64, channel_keys_id: [u8; 32]) -> Self::Signer {
1372 self.inner.derive_channel_signer(channel_value_satoshis, channel_keys_id)
1373 }
1374
1375 fn get_secure_random_bytes(&self) -> [u8; 32] {
1376 self.inner.get_secure_random_bytes()
1377 }
1378
1379 fn read_chan_signer(&self, reader: &[u8]) -> Result<Self::Signer, DecodeError> {
1380 self.inner.read_chan_signer(reader)
1381 }
1382
1383 fn sign_invoice(&self, hrp_bytes: &[u8], invoice_data: &[u5], recipient: Recipient) -> Result<RecoverableSignature, ()> {
1384 let preimage = construct_invoice_preimage(&hrp_bytes, &invoice_data);
1385 let secret = self.get_node_secret(recipient)?;
1386 Ok(self.inner.secp_ctx.sign_ecdsa_recoverable(&hash_to_message!(&Sha256::hash(&preimage)), &secret))
1387 }
1388}
1389
1390impl PhantomKeysManager {
1391 pub fn new(seed: &[u8; 32], starting_time_secs: u64, starting_time_nanos: u32, cross_node_seed: &[u8; 32]) -> Self {
1403 let inner = KeysManager::new(seed, starting_time_secs, starting_time_nanos);
1404 let (inbound_key, phantom_key) = hkdf_extract_expand_twice(b"LDK Inbound and Phantom Payment Key Expansion", cross_node_seed);
1405 let phantom_secret = SecretKey::from_slice(&phantom_key).unwrap();
1406 let phantom_node_id = PublicKey::from_secret_key(&inner.secp_ctx, &phantom_secret);
1407 Self {
1408 inner,
1409 inbound_payment_key: KeyMaterial(inbound_key),
1410 phantom_secret,
1411 phantom_node_id,
1412 }
1413 }
1414
1415 pub fn spend_spendable_outputs<C: Signing>(&self, descriptors: &[&SpendableOutputDescriptor], outputs: Vec<TxOut>, change_destination_script: Script, feerate_sat_per_1000_weight: u32, secp_ctx: &Secp256k1<C>) -> Result<Transaction, ()> {
1417 self.inner.spend_spendable_outputs(descriptors, outputs, change_destination_script, feerate_sat_per_1000_weight, secp_ctx)
1418 }
1419
1420 pub fn derive_channel_keys(&self, channel_value_satoshis: u64, params: &[u8; 32]) -> InMemorySigner {
1422 self.inner.derive_channel_keys(channel_value_satoshis, params)
1423 }
1424}
1425
1426#[test]
1428pub fn dyn_sign() {
1429 let _signer: Box<dyn BaseSign>;
1430}