Merge pull request #17 from TheBlueMatt/2021-04-upstream-confirm
[ldk-c-bindings] / lightning-c-bindings / src / lightning / chain / keysinterface.rs
1 // This file is Copyright its original authors, visible in version control
2 // history and in the source files from which this was generated.
3 //
4 // This file is licensed under the license available in the LICENSE or LICENSE.md
5 // file in the root of this repository or, if no such file exists, the same
6 // license as that which applies to the original source files from which this
7 // source was automatically generated.
8
9 //! keysinterface provides keys into rust-lightning and defines some useful enums which describe
10 //! spendable on-chain outputs which the user owns and is responsible for using just as any other
11 //! on-chain output which is theirs.
12
13 use std::ffi::c_void;
14 use bitcoin::hashes::Hash;
15 use crate::c_types::*;
16
17
18 use lightning::chain::keysinterface::DelayedPaymentOutputDescriptor as nativeDelayedPaymentOutputDescriptorImport;
19 type nativeDelayedPaymentOutputDescriptor = nativeDelayedPaymentOutputDescriptorImport;
20
21 /// Information about a spendable output to a P2WSH script. See
22 /// SpendableOutputDescriptor::DelayedPaymentOutput for more details on how to spend this.
23 #[must_use]
24 #[repr(C)]
25 pub struct DelayedPaymentOutputDescriptor {
26         /// A pointer to the opaque Rust object.
27
28         /// Nearly everywhere, inner must be non-null, however in places where
29         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
30         pub inner: *mut nativeDelayedPaymentOutputDescriptor,
31         /// Indicates that this is the only struct which contains the same pointer.
32
33         /// Rust functions which take ownership of an object provided via an argument require
34         /// this to be true and invalidate the object pointed to by inner.
35         pub is_owned: bool,
36 }
37
38 impl Drop for DelayedPaymentOutputDescriptor {
39         fn drop(&mut self) {
40                 if self.is_owned && !<*mut nativeDelayedPaymentOutputDescriptor>::is_null(self.inner) {
41                         let _ = unsafe { Box::from_raw(self.inner) };
42                 }
43         }
44 }
45 /// Frees any resources used by the DelayedPaymentOutputDescriptor, if is_owned is set and inner is non-NULL.
46 #[no_mangle]
47 pub extern "C" fn DelayedPaymentOutputDescriptor_free(this_obj: DelayedPaymentOutputDescriptor) { }
48 #[allow(unused)]
49 /// Used only if an object of this type is returned as a trait impl by a method
50 extern "C" fn DelayedPaymentOutputDescriptor_free_void(this_ptr: *mut c_void) {
51         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeDelayedPaymentOutputDescriptor); }
52 }
53 #[allow(unused)]
54 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
55 impl DelayedPaymentOutputDescriptor {
56         pub(crate) fn take_inner(mut self) -> *mut nativeDelayedPaymentOutputDescriptor {
57                 assert!(self.is_owned);
58                 let ret = self.inner;
59                 self.inner = std::ptr::null_mut();
60                 ret
61         }
62 }
63 /// The outpoint which is spendable
64 #[no_mangle]
65 pub extern "C" fn DelayedPaymentOutputDescriptor_get_outpoint(this_ptr: &DelayedPaymentOutputDescriptor) -> crate::lightning::chain::transaction::OutPoint {
66         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.outpoint;
67         crate::lightning::chain::transaction::OutPoint { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
68 }
69 /// The outpoint which is spendable
70 #[no_mangle]
71 pub extern "C" fn DelayedPaymentOutputDescriptor_set_outpoint(this_ptr: &mut DelayedPaymentOutputDescriptor, mut val: crate::lightning::chain::transaction::OutPoint) {
72         unsafe { &mut *this_ptr.inner }.outpoint = *unsafe { Box::from_raw(val.take_inner()) };
73 }
74 /// Per commitment point to derive delayed_payment_key by key holder
75 #[no_mangle]
76 pub extern "C" fn DelayedPaymentOutputDescriptor_get_per_commitment_point(this_ptr: &DelayedPaymentOutputDescriptor) -> crate::c_types::PublicKey {
77         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.per_commitment_point;
78         crate::c_types::PublicKey::from_rust(&inner_val)
79 }
80 /// Per commitment point to derive delayed_payment_key by key holder
81 #[no_mangle]
82 pub extern "C" fn DelayedPaymentOutputDescriptor_set_per_commitment_point(this_ptr: &mut DelayedPaymentOutputDescriptor, mut val: crate::c_types::PublicKey) {
83         unsafe { &mut *this_ptr.inner }.per_commitment_point = val.into_rust();
84 }
85 /// The nSequence value which must be set in the spending input to satisfy the OP_CSV in
86 /// the witness_script.
87 #[no_mangle]
88 pub extern "C" fn DelayedPaymentOutputDescriptor_get_to_self_delay(this_ptr: &DelayedPaymentOutputDescriptor) -> u16 {
89         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.to_self_delay;
90         *inner_val
91 }
92 /// The nSequence value which must be set in the spending input to satisfy the OP_CSV in
93 /// the witness_script.
94 #[no_mangle]
95 pub extern "C" fn DelayedPaymentOutputDescriptor_set_to_self_delay(this_ptr: &mut DelayedPaymentOutputDescriptor, mut val: u16) {
96         unsafe { &mut *this_ptr.inner }.to_self_delay = val;
97 }
98 /// The output which is referenced by the given outpoint
99 #[no_mangle]
100 pub extern "C" fn DelayedPaymentOutputDescriptor_set_output(this_ptr: &mut DelayedPaymentOutputDescriptor, mut val: crate::c_types::TxOut) {
101         unsafe { &mut *this_ptr.inner }.output = val.into_rust();
102 }
103 /// The revocation point specific to the commitment transaction which was broadcast. Used to
104 /// derive the witnessScript for this output.
105 #[no_mangle]
106 pub extern "C" fn DelayedPaymentOutputDescriptor_get_revocation_pubkey(this_ptr: &DelayedPaymentOutputDescriptor) -> crate::c_types::PublicKey {
107         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.revocation_pubkey;
108         crate::c_types::PublicKey::from_rust(&inner_val)
109 }
110 /// The revocation point specific to the commitment transaction which was broadcast. Used to
111 /// derive the witnessScript for this output.
112 #[no_mangle]
113 pub extern "C" fn DelayedPaymentOutputDescriptor_set_revocation_pubkey(this_ptr: &mut DelayedPaymentOutputDescriptor, mut val: crate::c_types::PublicKey) {
114         unsafe { &mut *this_ptr.inner }.revocation_pubkey = val.into_rust();
115 }
116 /// Arbitrary identification information returned by a call to
117 /// `Sign::channel_keys_id()`. This may be useful in re-deriving keys used in
118 /// the channel to spend the output.
119 #[no_mangle]
120 pub extern "C" fn DelayedPaymentOutputDescriptor_get_channel_keys_id(this_ptr: &DelayedPaymentOutputDescriptor) -> *const [u8; 32] {
121         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_keys_id;
122         inner_val
123 }
124 /// Arbitrary identification information returned by a call to
125 /// `Sign::channel_keys_id()`. This may be useful in re-deriving keys used in
126 /// the channel to spend the output.
127 #[no_mangle]
128 pub extern "C" fn DelayedPaymentOutputDescriptor_set_channel_keys_id(this_ptr: &mut DelayedPaymentOutputDescriptor, mut val: crate::c_types::ThirtyTwoBytes) {
129         unsafe { &mut *this_ptr.inner }.channel_keys_id = val.data;
130 }
131 /// The value of the channel which this output originated from, possibly indirectly.
132 #[no_mangle]
133 pub extern "C" fn DelayedPaymentOutputDescriptor_get_channel_value_satoshis(this_ptr: &DelayedPaymentOutputDescriptor) -> u64 {
134         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_value_satoshis;
135         *inner_val
136 }
137 /// The value of the channel which this output originated from, possibly indirectly.
138 #[no_mangle]
139 pub extern "C" fn DelayedPaymentOutputDescriptor_set_channel_value_satoshis(this_ptr: &mut DelayedPaymentOutputDescriptor, mut val: u64) {
140         unsafe { &mut *this_ptr.inner }.channel_value_satoshis = val;
141 }
142 /// Constructs a new DelayedPaymentOutputDescriptor given each field
143 #[must_use]
144 #[no_mangle]
145 pub extern "C" fn DelayedPaymentOutputDescriptor_new(mut outpoint_arg: crate::lightning::chain::transaction::OutPoint, mut per_commitment_point_arg: crate::c_types::PublicKey, mut to_self_delay_arg: u16, mut output_arg: crate::c_types::TxOut, mut revocation_pubkey_arg: crate::c_types::PublicKey, mut channel_keys_id_arg: crate::c_types::ThirtyTwoBytes, mut channel_value_satoshis_arg: u64) -> DelayedPaymentOutputDescriptor {
146         DelayedPaymentOutputDescriptor { inner: Box::into_raw(Box::new(nativeDelayedPaymentOutputDescriptor {
147                 outpoint: *unsafe { Box::from_raw(outpoint_arg.take_inner()) },
148                 per_commitment_point: per_commitment_point_arg.into_rust(),
149                 to_self_delay: to_self_delay_arg,
150                 output: output_arg.into_rust(),
151                 revocation_pubkey: revocation_pubkey_arg.into_rust(),
152                 channel_keys_id: channel_keys_id_arg.data,
153                 channel_value_satoshis: channel_value_satoshis_arg,
154         })), is_owned: true }
155 }
156 impl Clone for DelayedPaymentOutputDescriptor {
157         fn clone(&self) -> Self {
158                 Self {
159                         inner: if <*mut nativeDelayedPaymentOutputDescriptor>::is_null(self.inner) { std::ptr::null_mut() } else {
160                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
161                         is_owned: true,
162                 }
163         }
164 }
165 #[allow(unused)]
166 /// Used only if an object of this type is returned as a trait impl by a method
167 pub(crate) extern "C" fn DelayedPaymentOutputDescriptor_clone_void(this_ptr: *const c_void) -> *mut c_void {
168         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeDelayedPaymentOutputDescriptor)).clone() })) as *mut c_void
169 }
170 #[no_mangle]
171 /// Creates a copy of the DelayedPaymentOutputDescriptor
172 pub extern "C" fn DelayedPaymentOutputDescriptor_clone(orig: &DelayedPaymentOutputDescriptor) -> DelayedPaymentOutputDescriptor {
173         orig.clone()
174 }
175
176 use lightning::chain::keysinterface::StaticPaymentOutputDescriptor as nativeStaticPaymentOutputDescriptorImport;
177 type nativeStaticPaymentOutputDescriptor = nativeStaticPaymentOutputDescriptorImport;
178
179 /// Information about a spendable output to our \"payment key\". See
180 /// SpendableOutputDescriptor::StaticPaymentOutput for more details on how to spend this.
181 #[must_use]
182 #[repr(C)]
183 pub struct StaticPaymentOutputDescriptor {
184         /// A pointer to the opaque Rust object.
185
186         /// Nearly everywhere, inner must be non-null, however in places where
187         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
188         pub inner: *mut nativeStaticPaymentOutputDescriptor,
189         /// Indicates that this is the only struct which contains the same pointer.
190
191         /// Rust functions which take ownership of an object provided via an argument require
192         /// this to be true and invalidate the object pointed to by inner.
193         pub is_owned: bool,
194 }
195
196 impl Drop for StaticPaymentOutputDescriptor {
197         fn drop(&mut self) {
198                 if self.is_owned && !<*mut nativeStaticPaymentOutputDescriptor>::is_null(self.inner) {
199                         let _ = unsafe { Box::from_raw(self.inner) };
200                 }
201         }
202 }
203 /// Frees any resources used by the StaticPaymentOutputDescriptor, if is_owned is set and inner is non-NULL.
204 #[no_mangle]
205 pub extern "C" fn StaticPaymentOutputDescriptor_free(this_obj: StaticPaymentOutputDescriptor) { }
206 #[allow(unused)]
207 /// Used only if an object of this type is returned as a trait impl by a method
208 extern "C" fn StaticPaymentOutputDescriptor_free_void(this_ptr: *mut c_void) {
209         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeStaticPaymentOutputDescriptor); }
210 }
211 #[allow(unused)]
212 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
213 impl StaticPaymentOutputDescriptor {
214         pub(crate) fn take_inner(mut self) -> *mut nativeStaticPaymentOutputDescriptor {
215                 assert!(self.is_owned);
216                 let ret = self.inner;
217                 self.inner = std::ptr::null_mut();
218                 ret
219         }
220 }
221 /// The outpoint which is spendable
222 #[no_mangle]
223 pub extern "C" fn StaticPaymentOutputDescriptor_get_outpoint(this_ptr: &StaticPaymentOutputDescriptor) -> crate::lightning::chain::transaction::OutPoint {
224         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.outpoint;
225         crate::lightning::chain::transaction::OutPoint { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
226 }
227 /// The outpoint which is spendable
228 #[no_mangle]
229 pub extern "C" fn StaticPaymentOutputDescriptor_set_outpoint(this_ptr: &mut StaticPaymentOutputDescriptor, mut val: crate::lightning::chain::transaction::OutPoint) {
230         unsafe { &mut *this_ptr.inner }.outpoint = *unsafe { Box::from_raw(val.take_inner()) };
231 }
232 /// The output which is referenced by the given outpoint
233 #[no_mangle]
234 pub extern "C" fn StaticPaymentOutputDescriptor_set_output(this_ptr: &mut StaticPaymentOutputDescriptor, mut val: crate::c_types::TxOut) {
235         unsafe { &mut *this_ptr.inner }.output = val.into_rust();
236 }
237 /// Arbitrary identification information returned by a call to
238 /// `Sign::channel_keys_id()`. This may be useful in re-deriving keys used in
239 /// the channel to spend the output.
240 #[no_mangle]
241 pub extern "C" fn StaticPaymentOutputDescriptor_get_channel_keys_id(this_ptr: &StaticPaymentOutputDescriptor) -> *const [u8; 32] {
242         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_keys_id;
243         inner_val
244 }
245 /// Arbitrary identification information returned by a call to
246 /// `Sign::channel_keys_id()`. This may be useful in re-deriving keys used in
247 /// the channel to spend the output.
248 #[no_mangle]
249 pub extern "C" fn StaticPaymentOutputDescriptor_set_channel_keys_id(this_ptr: &mut StaticPaymentOutputDescriptor, mut val: crate::c_types::ThirtyTwoBytes) {
250         unsafe { &mut *this_ptr.inner }.channel_keys_id = val.data;
251 }
252 /// The value of the channel which this transactions spends.
253 #[no_mangle]
254 pub extern "C" fn StaticPaymentOutputDescriptor_get_channel_value_satoshis(this_ptr: &StaticPaymentOutputDescriptor) -> u64 {
255         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_value_satoshis;
256         *inner_val
257 }
258 /// The value of the channel which this transactions spends.
259 #[no_mangle]
260 pub extern "C" fn StaticPaymentOutputDescriptor_set_channel_value_satoshis(this_ptr: &mut StaticPaymentOutputDescriptor, mut val: u64) {
261         unsafe { &mut *this_ptr.inner }.channel_value_satoshis = val;
262 }
263 /// Constructs a new StaticPaymentOutputDescriptor given each field
264 #[must_use]
265 #[no_mangle]
266 pub extern "C" fn StaticPaymentOutputDescriptor_new(mut outpoint_arg: crate::lightning::chain::transaction::OutPoint, mut output_arg: crate::c_types::TxOut, mut channel_keys_id_arg: crate::c_types::ThirtyTwoBytes, mut channel_value_satoshis_arg: u64) -> StaticPaymentOutputDescriptor {
267         StaticPaymentOutputDescriptor { inner: Box::into_raw(Box::new(nativeStaticPaymentOutputDescriptor {
268                 outpoint: *unsafe { Box::from_raw(outpoint_arg.take_inner()) },
269                 output: output_arg.into_rust(),
270                 channel_keys_id: channel_keys_id_arg.data,
271                 channel_value_satoshis: channel_value_satoshis_arg,
272         })), is_owned: true }
273 }
274 impl Clone for StaticPaymentOutputDescriptor {
275         fn clone(&self) -> Self {
276                 Self {
277                         inner: if <*mut nativeStaticPaymentOutputDescriptor>::is_null(self.inner) { std::ptr::null_mut() } else {
278                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
279                         is_owned: true,
280                 }
281         }
282 }
283 #[allow(unused)]
284 /// Used only if an object of this type is returned as a trait impl by a method
285 pub(crate) extern "C" fn StaticPaymentOutputDescriptor_clone_void(this_ptr: *const c_void) -> *mut c_void {
286         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeStaticPaymentOutputDescriptor)).clone() })) as *mut c_void
287 }
288 #[no_mangle]
289 /// Creates a copy of the StaticPaymentOutputDescriptor
290 pub extern "C" fn StaticPaymentOutputDescriptor_clone(orig: &StaticPaymentOutputDescriptor) -> StaticPaymentOutputDescriptor {
291         orig.clone()
292 }
293 /// When on-chain outputs are created by rust-lightning (which our counterparty is not able to
294 /// claim at any point in the future) an event is generated which you must track and be able to
295 /// spend on-chain. The information needed to do this is provided in this enum, including the
296 /// outpoint describing which txid and output index is available, the full output which exists at
297 /// that txid/index, and any keys or other information required to sign.
298 #[must_use]
299 #[derive(Clone)]
300 #[repr(C)]
301 pub enum SpendableOutputDescriptor {
302         /// An output to a script which was provided via KeysInterface directly, either from
303         /// `get_destination_script()` or `get_shutdown_pubkey()`, thus you should already know how to
304         /// spend it. No secret keys are provided as rust-lightning was never given any key.
305         /// These may include outputs from a transaction punishing our counterparty or claiming an HTLC
306         /// on-chain using the payment preimage or after it has timed out.
307         StaticOutput {
308                 /// The outpoint which is spendable
309                 outpoint: crate::lightning::chain::transaction::OutPoint,
310                 /// The output which is referenced by the given outpoint.
311                 output: crate::c_types::TxOut,
312         },
313         /// An output to a P2WSH script which can be spent with a single signature after a CSV delay.
314         ///
315         /// The witness in the spending input should be:
316         /// <BIP 143 signature> <empty vector> (MINIMALIF standard rule) <provided witnessScript>
317         ///
318         /// Note that the nSequence field in the spending input must be set to to_self_delay
319         /// (which means the transaction is not broadcastable until at least to_self_delay
320         /// blocks after the outpoint confirms).
321         ///
322         /// These are generally the result of a \"revocable\" output to us, spendable only by us unless
323         /// it is an output from an old state which we broadcast (which should never happen).
324         ///
325         /// To derive the delayed_payment key which is used to sign for this input, you must pass the
326         /// holder delayed_payment_base_key (ie the private key which corresponds to the pubkey in
327         /// Sign::pubkeys().delayed_payment_basepoint) and the provided per_commitment_point to
328         /// chan_utils::derive_private_key. The public key can be generated without the secret key
329         /// using chan_utils::derive_public_key and only the delayed_payment_basepoint which appears in
330         /// Sign::pubkeys().
331         ///
332         /// To derive the revocation_pubkey provided here (which is used in the witness
333         /// script generation), you must pass the counterparty revocation_basepoint (which appears in the
334         /// call to Sign::ready_channel) and the provided per_commitment point
335         /// to chan_utils::derive_public_revocation_key.
336         ///
337         /// The witness script which is hashed and included in the output script_pubkey may be
338         /// regenerated by passing the revocation_pubkey (derived as above), our delayed_payment pubkey
339         /// (derived as above), and the to_self_delay contained here to
340         /// chan_utils::get_revokeable_redeemscript.
341         DelayedPaymentOutput(crate::lightning::chain::keysinterface::DelayedPaymentOutputDescriptor),
342         /// An output to a P2WPKH, spendable exclusively by our payment key (ie the private key which
343         /// corresponds to the public key in Sign::pubkeys().payment_point).
344         /// The witness in the spending input, is, thus, simply:
345         /// <BIP 143 signature> <payment key>
346         ///
347         /// These are generally the result of our counterparty having broadcast the current state,
348         /// allowing us to claim the non-HTLC-encumbered outputs immediately.
349         StaticPaymentOutput(crate::lightning::chain::keysinterface::StaticPaymentOutputDescriptor),
350 }
351 use lightning::chain::keysinterface::SpendableOutputDescriptor as nativeSpendableOutputDescriptor;
352 impl SpendableOutputDescriptor {
353         #[allow(unused)]
354         pub(crate) fn to_native(&self) -> nativeSpendableOutputDescriptor {
355                 match self {
356                         SpendableOutputDescriptor::StaticOutput {ref outpoint, ref output, } => {
357                                 let mut outpoint_nonref = (*outpoint).clone();
358                                 let mut output_nonref = (*output).clone();
359                                 nativeSpendableOutputDescriptor::StaticOutput {
360                                         outpoint: *unsafe { Box::from_raw(outpoint_nonref.take_inner()) },
361                                         output: output_nonref.into_rust(),
362                                 }
363                         },
364                         SpendableOutputDescriptor::DelayedPaymentOutput (ref a, ) => {
365                                 let mut a_nonref = (*a).clone();
366                                 nativeSpendableOutputDescriptor::DelayedPaymentOutput (
367                                         *unsafe { Box::from_raw(a_nonref.take_inner()) },
368                                 )
369                         },
370                         SpendableOutputDescriptor::StaticPaymentOutput (ref a, ) => {
371                                 let mut a_nonref = (*a).clone();
372                                 nativeSpendableOutputDescriptor::StaticPaymentOutput (
373                                         *unsafe { Box::from_raw(a_nonref.take_inner()) },
374                                 )
375                         },
376                 }
377         }
378         #[allow(unused)]
379         pub(crate) fn into_native(self) -> nativeSpendableOutputDescriptor {
380                 match self {
381                         SpendableOutputDescriptor::StaticOutput {mut outpoint, mut output, } => {
382                                 nativeSpendableOutputDescriptor::StaticOutput {
383                                         outpoint: *unsafe { Box::from_raw(outpoint.take_inner()) },
384                                         output: output.into_rust(),
385                                 }
386                         },
387                         SpendableOutputDescriptor::DelayedPaymentOutput (mut a, ) => {
388                                 nativeSpendableOutputDescriptor::DelayedPaymentOutput (
389                                         *unsafe { Box::from_raw(a.take_inner()) },
390                                 )
391                         },
392                         SpendableOutputDescriptor::StaticPaymentOutput (mut a, ) => {
393                                 nativeSpendableOutputDescriptor::StaticPaymentOutput (
394                                         *unsafe { Box::from_raw(a.take_inner()) },
395                                 )
396                         },
397                 }
398         }
399         #[allow(unused)]
400         pub(crate) fn from_native(native: &nativeSpendableOutputDescriptor) -> Self {
401                 match native {
402                         nativeSpendableOutputDescriptor::StaticOutput {ref outpoint, ref output, } => {
403                                 let mut outpoint_nonref = (*outpoint).clone();
404                                 let mut output_nonref = (*output).clone();
405                                 SpendableOutputDescriptor::StaticOutput {
406                                         outpoint: crate::lightning::chain::transaction::OutPoint { inner: Box::into_raw(Box::new(outpoint_nonref)), is_owned: true },
407                                         output: crate::c_types::TxOut::from_rust(output_nonref),
408                                 }
409                         },
410                         nativeSpendableOutputDescriptor::DelayedPaymentOutput (ref a, ) => {
411                                 let mut a_nonref = (*a).clone();
412                                 SpendableOutputDescriptor::DelayedPaymentOutput (
413                                         crate::lightning::chain::keysinterface::DelayedPaymentOutputDescriptor { inner: Box::into_raw(Box::new(a_nonref)), is_owned: true },
414                                 )
415                         },
416                         nativeSpendableOutputDescriptor::StaticPaymentOutput (ref a, ) => {
417                                 let mut a_nonref = (*a).clone();
418                                 SpendableOutputDescriptor::StaticPaymentOutput (
419                                         crate::lightning::chain::keysinterface::StaticPaymentOutputDescriptor { inner: Box::into_raw(Box::new(a_nonref)), is_owned: true },
420                                 )
421                         },
422                 }
423         }
424         #[allow(unused)]
425         pub(crate) fn native_into(native: nativeSpendableOutputDescriptor) -> Self {
426                 match native {
427                         nativeSpendableOutputDescriptor::StaticOutput {mut outpoint, mut output, } => {
428                                 SpendableOutputDescriptor::StaticOutput {
429                                         outpoint: crate::lightning::chain::transaction::OutPoint { inner: Box::into_raw(Box::new(outpoint)), is_owned: true },
430                                         output: crate::c_types::TxOut::from_rust(output),
431                                 }
432                         },
433                         nativeSpendableOutputDescriptor::DelayedPaymentOutput (mut a, ) => {
434                                 SpendableOutputDescriptor::DelayedPaymentOutput (
435                                         crate::lightning::chain::keysinterface::DelayedPaymentOutputDescriptor { inner: Box::into_raw(Box::new(a)), is_owned: true },
436                                 )
437                         },
438                         nativeSpendableOutputDescriptor::StaticPaymentOutput (mut a, ) => {
439                                 SpendableOutputDescriptor::StaticPaymentOutput (
440                                         crate::lightning::chain::keysinterface::StaticPaymentOutputDescriptor { inner: Box::into_raw(Box::new(a)), is_owned: true },
441                                 )
442                         },
443                 }
444         }
445 }
446 /// Frees any resources used by the SpendableOutputDescriptor
447 #[no_mangle]
448 pub extern "C" fn SpendableOutputDescriptor_free(this_ptr: SpendableOutputDescriptor) { }
449 /// Creates a copy of the SpendableOutputDescriptor
450 #[no_mangle]
451 pub extern "C" fn SpendableOutputDescriptor_clone(orig: &SpendableOutputDescriptor) -> SpendableOutputDescriptor {
452         orig.clone()
453 }
454 #[no_mangle]
455 /// Serialize the SpendableOutputDescriptor object into a byte array which can be read by SpendableOutputDescriptor_read
456 pub extern "C" fn SpendableOutputDescriptor_write(obj: &SpendableOutputDescriptor) -> crate::c_types::derived::CVec_u8Z {
457         crate::c_types::serialize_obj(&unsafe { &*obj }.to_native())
458 }
459 #[no_mangle]
460 /// Read a SpendableOutputDescriptor from a byte array, created by SpendableOutputDescriptor_write
461 pub extern "C" fn SpendableOutputDescriptor_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_SpendableOutputDescriptorDecodeErrorZ {
462         let res = crate::c_types::deserialize_obj(ser);
463         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::chain::keysinterface::SpendableOutputDescriptor::native_into(o) }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
464         local_res
465 }
466 /// A trait to sign lightning channel transactions as described in BOLT 3.
467 ///
468 /// Signing services could be implemented on a hardware wallet. In this case,
469 /// the current Sign would be a front-end on top of a communication
470 /// channel connected to your secure device and lightning key material wouldn't
471 /// reside on a hot server. Nevertheless, a this deployment would still need
472 /// to trust the ChannelManager to avoid loss of funds as this latest component
473 /// could ask to sign commitment transaction with HTLCs paying to attacker pubkeys.
474 ///
475 /// A more secure iteration would be to use hashlock (or payment points) to pair
476 /// invoice/incoming HTLCs with outgoing HTLCs to implement a no-trust-ChannelManager
477 /// at the price of more state and computation on the hardware wallet side. In the future,
478 /// we are looking forward to design such interface.
479 ///
480 /// In any case, ChannelMonitor or fallback watchtowers are always going to be trusted
481 /// to act, as liveness and breach reply correctness are always going to be hard requirements
482 /// of LN security model, orthogonal of key management issues.
483 #[repr(C)]
484 pub struct BaseSign {
485         /// An opaque pointer which is passed to your function implementations as an argument.
486         /// This has no meaning in the LDK, and can be NULL or any other value.
487         pub this_arg: *mut c_void,
488         /// Gets the per-commitment point for a specific commitment number
489         ///
490         /// Note that the commitment number starts at (1 << 48) - 1 and counts backwards.
491         #[must_use]
492         pub get_per_commitment_point: extern "C" fn (this_arg: *const c_void, idx: u64) -> crate::c_types::PublicKey,
493         /// Gets the commitment secret for a specific commitment number as part of the revocation process
494         ///
495         /// An external signer implementation should error here if the commitment was already signed
496         /// and should refuse to sign it in the future.
497         ///
498         /// May be called more than once for the same index.
499         ///
500         /// Note that the commitment number starts at (1 << 48) - 1 and counts backwards.
501         #[must_use]
502         pub release_commitment_secret: extern "C" fn (this_arg: *const c_void, idx: u64) -> crate::c_types::ThirtyTwoBytes,
503         /// Gets the holder's channel public keys and basepoints
504         pub pubkeys: crate::lightning::ln::chan_utils::ChannelPublicKeys,
505         /// Fill in the pubkeys field as a reference to it will be given to Rust after this returns
506         /// Note that this takes a pointer to this object, not the this_ptr like other methods do
507         /// This function pointer may be NULL if pubkeys is filled in when this object is created and never needs updating.
508         pub set_pubkeys: Option<extern "C" fn(&BaseSign)>,
509         /// Gets an arbitrary identifier describing the set of keys which are provided back to you in
510         /// some SpendableOutputDescriptor types. This should be sufficient to identify this
511         /// Sign object uniquely and lookup or re-derive its keys.
512         #[must_use]
513         pub channel_keys_id: extern "C" fn (this_arg: *const c_void) -> crate::c_types::ThirtyTwoBytes,
514         /// Create a signature for a counterparty's commitment transaction and associated HTLC transactions.
515         ///
516         /// Note that if signing fails or is rejected, the channel will be force-closed.
517         #[must_use]
518         pub sign_counterparty_commitment: extern "C" fn (this_arg: *const c_void, commitment_tx: &crate::lightning::ln::chan_utils::CommitmentTransaction) -> crate::c_types::derived::CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ,
519         /// Create a signatures for a holder's commitment transaction and its claiming HTLC transactions.
520         /// This will only ever be called with a non-revoked commitment_tx.  This will be called with the
521         /// latest commitment_tx when we initiate a force-close.
522         /// This will be called with the previous latest, just to get claiming HTLC signatures, if we are
523         /// reacting to a ChannelMonitor replica that decided to broadcast before it had been updated to
524         /// the latest.
525         /// This may be called multiple times for the same transaction.
526         ///
527         /// An external signer implementation should check that the commitment has not been revoked.
528         ///
529         /// May return Err if key derivation fails.  Callers, such as ChannelMonitor, will panic in such a case.
530         #[must_use]
531         pub sign_holder_commitment_and_htlcs: extern "C" fn (this_arg: *const c_void, commitment_tx: &crate::lightning::ln::chan_utils::HolderCommitmentTransaction) -> crate::c_types::derived::CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ,
532         /// Create a signature for the given input in a transaction spending an HTLC or commitment
533         /// transaction output when our counterparty broadcasts an old state.
534         ///
535         /// A justice transaction may claim multiples outputs at the same time if timelocks are
536         /// similar, but only a signature for the input at index `input` should be signed for here.
537         /// It may be called multiples time for same output(s) if a fee-bump is needed with regards
538         /// to an upcoming timelock expiration.
539         ///
540         /// Amount is value of the output spent by this input, committed to in the BIP 143 signature.
541         ///
542         /// per_commitment_key is revocation secret which was provided by our counterparty when they
543         /// revoked the state which they eventually broadcast. It's not a _holder_ secret key and does
544         /// not allow the spending of any funds by itself (you need our holder revocation_secret to do
545         /// so).
546         ///
547         /// htlc holds HTLC elements (hash, timelock) if the output being spent is a HTLC output, thus
548         /// changing the format of the witness script (which is committed to in the BIP 143
549         /// signatures).
550         #[must_use]
551         pub sign_justice_transaction: extern "C" fn (this_arg: *const c_void, justice_tx: crate::c_types::Transaction, input: usize, amount: u64, per_commitment_key: *const [u8; 32], htlc: &crate::lightning::ln::chan_utils::HTLCOutputInCommitment) -> crate::c_types::derived::CResult_SignatureNoneZ,
552         /// Create a signature for a claiming transaction for a HTLC output on a counterparty's commitment
553         /// transaction, either offered or received.
554         ///
555         /// Such a transaction may claim multiples offered outputs at same time if we know the
556         /// preimage for each when we create it, but only the input at index `input` should be
557         /// signed for here. It may be called multiple times for same output(s) if a fee-bump is
558         /// needed with regards to an upcoming timelock expiration.
559         ///
560         /// Witness_script is either a offered or received script as defined in BOLT3 for HTLC
561         /// outputs.
562         ///
563         /// Amount is value of the output spent by this input, committed to in the BIP 143 signature.
564         ///
565         /// Per_commitment_point is the dynamic point corresponding to the channel state
566         /// detected onchain. It has been generated by our counterparty and is used to derive
567         /// channel state keys, which are then included in the witness script and committed to in the
568         /// BIP 143 signature.
569         #[must_use]
570         pub sign_counterparty_htlc_transaction: extern "C" fn (this_arg: *const c_void, htlc_tx: crate::c_types::Transaction, input: usize, amount: u64, per_commitment_point: crate::c_types::PublicKey, htlc: &crate::lightning::ln::chan_utils::HTLCOutputInCommitment) -> crate::c_types::derived::CResult_SignatureNoneZ,
571         /// Create a signature for a (proposed) closing transaction.
572         ///
573         /// Note that, due to rounding, there may be one \"missing\" satoshi, and either party may have
574         /// chosen to forgo their output as dust.
575         #[must_use]
576         pub sign_closing_transaction: extern "C" fn (this_arg: *const c_void, closing_tx: crate::c_types::Transaction) -> crate::c_types::derived::CResult_SignatureNoneZ,
577         /// Signs a channel announcement message with our funding key, proving it comes from one
578         /// of the channel participants.
579         ///
580         /// Note that if this fails or is rejected, the channel will not be publicly announced and
581         /// our counterparty may (though likely will not) close the channel on us for violating the
582         /// protocol.
583         #[must_use]
584         pub sign_channel_announcement: extern "C" fn (this_arg: *const c_void, msg: &crate::lightning::ln::msgs::UnsignedChannelAnnouncement) -> crate::c_types::derived::CResult_SignatureNoneZ,
585         /// Set the counterparty static channel data, including basepoints,
586         /// counterparty_selected/holder_selected_contest_delay and funding outpoint.
587         /// This is done as soon as the funding outpoint is known.  Since these are static channel data,
588         /// they MUST NOT be allowed to change to different values once set.
589         ///
590         /// channel_parameters.is_populated() MUST be true.
591         ///
592         /// We bind holder_selected_contest_delay late here for API convenience.
593         ///
594         /// Will be called before any signatures are applied.
595         pub ready_channel: extern "C" fn (this_arg: *mut c_void, channel_parameters: &crate::lightning::ln::chan_utils::ChannelTransactionParameters),
596         /// Frees any resources associated with this object given its this_arg pointer.
597         /// Does not need to free the outer struct containing function pointers and may be NULL is no resources need to be freed.
598         pub free: Option<extern "C" fn(this_arg: *mut c_void)>,
599 }
600 unsafe impl Send for BaseSign {}
601
602 use lightning::chain::keysinterface::BaseSign as rustBaseSign;
603 impl rustBaseSign for BaseSign {
604         fn get_per_commitment_point(&self, idx: u64, _secp_ctx: &bitcoin::secp256k1::Secp256k1<bitcoin::secp256k1::All>) -> bitcoin::secp256k1::key::PublicKey {
605                 let mut ret = (self.get_per_commitment_point)(self.this_arg, idx);
606                 ret.into_rust()
607         }
608         fn release_commitment_secret(&self, idx: u64) -> [u8; 32] {
609                 let mut ret = (self.release_commitment_secret)(self.this_arg, idx);
610                 ret.data
611         }
612         fn pubkeys(&self) -> &lightning::ln::chan_utils::ChannelPublicKeys {
613                 if let Some(f) = self.set_pubkeys {
614                         (f)(&self);
615                 }
616                 unsafe { &*self.pubkeys.inner }
617         }
618         fn channel_keys_id(&self) -> [u8; 32] {
619                 let mut ret = (self.channel_keys_id)(self.this_arg);
620                 ret.data
621         }
622         fn sign_counterparty_commitment(&self, commitment_tx: &lightning::ln::chan_utils::CommitmentTransaction, _secp_ctx: &bitcoin::secp256k1::Secp256k1<bitcoin::secp256k1::All>) -> Result<(bitcoin::secp256k1::Signature, Vec<bitcoin::secp256k1::Signature>), ()> {
623                 let mut ret = (self.sign_counterparty_commitment)(self.this_arg, &crate::lightning::ln::chan_utils::CommitmentTransaction { inner: unsafe { (commitment_tx as *const _) as *mut _ }, is_owned: false });
624                 let mut local_ret = match ret.result_ok { true => Ok( { let (mut orig_ret_0_0, mut orig_ret_0_1) = (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }).to_rust(); let mut local_orig_ret_0_1 = Vec::new(); for mut item in orig_ret_0_1.into_rust().drain(..) { local_orig_ret_0_1.push( { item.into_rust() }); }; let mut local_ret_0 = (orig_ret_0_0.into_rust(), local_orig_ret_0_1); local_ret_0 }), false => Err( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) })*/ })};
625                 local_ret
626         }
627         fn sign_holder_commitment_and_htlcs(&self, commitment_tx: &lightning::ln::chan_utils::HolderCommitmentTransaction, _secp_ctx: &bitcoin::secp256k1::Secp256k1<bitcoin::secp256k1::All>) -> Result<(bitcoin::secp256k1::Signature, Vec<bitcoin::secp256k1::Signature>), ()> {
628                 let mut ret = (self.sign_holder_commitment_and_htlcs)(self.this_arg, &crate::lightning::ln::chan_utils::HolderCommitmentTransaction { inner: unsafe { (commitment_tx as *const _) as *mut _ }, is_owned: false });
629                 let mut local_ret = match ret.result_ok { true => Ok( { let (mut orig_ret_0_0, mut orig_ret_0_1) = (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }).to_rust(); let mut local_orig_ret_0_1 = Vec::new(); for mut item in orig_ret_0_1.into_rust().drain(..) { local_orig_ret_0_1.push( { item.into_rust() }); }; let mut local_ret_0 = (orig_ret_0_0.into_rust(), local_orig_ret_0_1); local_ret_0 }), false => Err( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) })*/ })};
630                 local_ret
631         }
632         fn sign_justice_transaction(&self, justice_tx: &bitcoin::blockdata::transaction::Transaction, input: usize, amount: u64, per_commitment_key: &bitcoin::secp256k1::key::SecretKey, htlc: &Option<lightning::ln::chan_utils::HTLCOutputInCommitment>, _secp_ctx: &bitcoin::secp256k1::Secp256k1<bitcoin::secp256k1::All>) -> Result<bitcoin::secp256k1::Signature, ()> {
633                 let mut local_htlc = &crate::lightning::ln::chan_utils::HTLCOutputInCommitment { inner: unsafe { (if htlc.is_none() { std::ptr::null() } else {  { (htlc.as_ref().unwrap()) } } as *const _) as *mut _ }, is_owned: false };
634                 let mut ret = (self.sign_justice_transaction)(self.this_arg, crate::c_types::Transaction::from_bitcoin(justice_tx), input, amount, per_commitment_key.as_ref(), local_htlc);
635                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }).into_rust() }), false => Err( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) })*/ })};
636                 local_ret
637         }
638         fn sign_counterparty_htlc_transaction(&self, htlc_tx: &bitcoin::blockdata::transaction::Transaction, input: usize, amount: u64, per_commitment_point: &bitcoin::secp256k1::key::PublicKey, htlc: &lightning::ln::chan_utils::HTLCOutputInCommitment, _secp_ctx: &bitcoin::secp256k1::Secp256k1<bitcoin::secp256k1::All>) -> Result<bitcoin::secp256k1::Signature, ()> {
639                 let mut ret = (self.sign_counterparty_htlc_transaction)(self.this_arg, crate::c_types::Transaction::from_bitcoin(htlc_tx), input, amount, crate::c_types::PublicKey::from_rust(&per_commitment_point), &crate::lightning::ln::chan_utils::HTLCOutputInCommitment { inner: unsafe { (htlc as *const _) as *mut _ }, is_owned: false });
640                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }).into_rust() }), false => Err( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) })*/ })};
641                 local_ret
642         }
643         fn sign_closing_transaction(&self, closing_tx: &bitcoin::blockdata::transaction::Transaction, _secp_ctx: &bitcoin::secp256k1::Secp256k1<bitcoin::secp256k1::All>) -> Result<bitcoin::secp256k1::Signature, ()> {
644                 let mut ret = (self.sign_closing_transaction)(self.this_arg, crate::c_types::Transaction::from_bitcoin(closing_tx));
645                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }).into_rust() }), false => Err( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) })*/ })};
646                 local_ret
647         }
648         fn sign_channel_announcement(&self, msg: &lightning::ln::msgs::UnsignedChannelAnnouncement, _secp_ctx: &bitcoin::secp256k1::Secp256k1<bitcoin::secp256k1::All>) -> Result<bitcoin::secp256k1::Signature, ()> {
649                 let mut ret = (self.sign_channel_announcement)(self.this_arg, &crate::lightning::ln::msgs::UnsignedChannelAnnouncement { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false });
650                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }).into_rust() }), false => Err( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) })*/ })};
651                 local_ret
652         }
653         fn ready_channel(&mut self, channel_parameters: &lightning::ln::chan_utils::ChannelTransactionParameters) {
654                 (self.ready_channel)(self.this_arg, &crate::lightning::ln::chan_utils::ChannelTransactionParameters { inner: unsafe { (channel_parameters as *const _) as *mut _ }, is_owned: false })
655         }
656 }
657
658 // We're essentially a pointer already, or at least a set of pointers, so allow us to be used
659 // directly as a Deref trait in higher-level structs:
660 impl std::ops::Deref for BaseSign {
661         type Target = Self;
662         fn deref(&self) -> &Self {
663                 self
664         }
665 }
666 /// Calls the free function if one is set
667 #[no_mangle]
668 pub extern "C" fn BaseSign_free(this_ptr: BaseSign) { }
669 impl Drop for BaseSign {
670         fn drop(&mut self) {
671                 if let Some(f) = self.free {
672                         f(self.this_arg);
673                 }
674         }
675 }
676 /// A cloneable signer.
677 ///
678 /// Although we require signers to be cloneable, it may be useful for developers to be able to use
679 /// signers in an un-sized way, for example as `dyn BaseSign`. Therefore we separate the Clone trait,
680 /// which implies Sized, into this derived trait.
681 #[repr(C)]
682 pub struct Sign {
683         /// An opaque pointer which is passed to your function implementations as an argument.
684         /// This has no meaning in the LDK, and can be NULL or any other value.
685         pub this_arg: *mut c_void,
686         /// Implementation of BaseSign for this object.
687         pub BaseSign: crate::lightning::chain::keysinterface::BaseSign,
688         /// Creates a copy of the BaseSign, for a copy of this Sign.
689         /// Because BaseSign doesn't natively support copying itself, you have to provide a full copy implementation here.
690         pub BaseSign_clone: extern "C" fn (orig_BaseSign: &BaseSign) -> BaseSign,
691         /// Serialize the object into a byte array
692         pub write: extern "C" fn (this_arg: *const c_void) -> crate::c_types::derived::CVec_u8Z,
693         /// Creates a copy of the object pointed to by this_arg, for a copy of this Sign.
694         /// Note that the ultimate copy of the Sign will have all function pointers the same as the original.
695         /// May be NULL if no action needs to be taken, the this_arg pointer will be copied into the new Sign.
696         pub clone: Option<extern "C" fn (this_arg: *const c_void) -> *mut c_void>,
697         /// Frees any resources associated with this object given its this_arg pointer.
698         /// Does not need to free the outer struct containing function pointers and may be NULL is no resources need to be freed.
699         pub free: Option<extern "C" fn(this_arg: *mut c_void)>,
700 }
701 impl lightning::chain::keysinterface::BaseSign for Sign {
702         fn get_per_commitment_point(&self, idx: u64, _secp_ctx: &bitcoin::secp256k1::Secp256k1<bitcoin::secp256k1::All>) -> bitcoin::secp256k1::key::PublicKey {
703                 let mut ret = (self.BaseSign.get_per_commitment_point)(self.this_arg, idx);
704                 ret.into_rust()
705         }
706         fn release_commitment_secret(&self, idx: u64) -> [u8; 32] {
707                 let mut ret = (self.BaseSign.release_commitment_secret)(self.this_arg, idx);
708                 ret.data
709         }
710         fn pubkeys(&self) -> &lightning::ln::chan_utils::ChannelPublicKeys {
711                 if let Some(f) = self.BaseSign.set_pubkeys {
712                         (f)(&self.BaseSign);
713                 }
714                 unsafe { &*self.BaseSign.pubkeys.inner }
715         }
716         fn channel_keys_id(&self) -> [u8; 32] {
717                 let mut ret = (self.BaseSign.channel_keys_id)(self.this_arg);
718                 ret.data
719         }
720         fn sign_counterparty_commitment(&self, commitment_tx: &lightning::ln::chan_utils::CommitmentTransaction, _secp_ctx: &bitcoin::secp256k1::Secp256k1<bitcoin::secp256k1::All>) -> Result<(bitcoin::secp256k1::Signature, Vec<bitcoin::secp256k1::Signature>), ()> {
721                 let mut ret = (self.BaseSign.sign_counterparty_commitment)(self.this_arg, &crate::lightning::ln::chan_utils::CommitmentTransaction { inner: unsafe { (commitment_tx as *const _) as *mut _ }, is_owned: false });
722                 let mut local_ret = match ret.result_ok { true => Ok( { let (mut orig_ret_0_0, mut orig_ret_0_1) = (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }).to_rust(); let mut local_orig_ret_0_1 = Vec::new(); for mut item in orig_ret_0_1.into_rust().drain(..) { local_orig_ret_0_1.push( { item.into_rust() }); }; let mut local_ret_0 = (orig_ret_0_0.into_rust(), local_orig_ret_0_1); local_ret_0 }), false => Err( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) })*/ })};
723                 local_ret
724         }
725         fn sign_holder_commitment_and_htlcs(&self, commitment_tx: &lightning::ln::chan_utils::HolderCommitmentTransaction, _secp_ctx: &bitcoin::secp256k1::Secp256k1<bitcoin::secp256k1::All>) -> Result<(bitcoin::secp256k1::Signature, Vec<bitcoin::secp256k1::Signature>), ()> {
726                 let mut ret = (self.BaseSign.sign_holder_commitment_and_htlcs)(self.this_arg, &crate::lightning::ln::chan_utils::HolderCommitmentTransaction { inner: unsafe { (commitment_tx as *const _) as *mut _ }, is_owned: false });
727                 let mut local_ret = match ret.result_ok { true => Ok( { let (mut orig_ret_0_0, mut orig_ret_0_1) = (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }).to_rust(); let mut local_orig_ret_0_1 = Vec::new(); for mut item in orig_ret_0_1.into_rust().drain(..) { local_orig_ret_0_1.push( { item.into_rust() }); }; let mut local_ret_0 = (orig_ret_0_0.into_rust(), local_orig_ret_0_1); local_ret_0 }), false => Err( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) })*/ })};
728                 local_ret
729         }
730         fn sign_justice_transaction(&self, justice_tx: &bitcoin::blockdata::transaction::Transaction, input: usize, amount: u64, per_commitment_key: &bitcoin::secp256k1::key::SecretKey, htlc: &Option<lightning::ln::chan_utils::HTLCOutputInCommitment>, _secp_ctx: &bitcoin::secp256k1::Secp256k1<bitcoin::secp256k1::All>) -> Result<bitcoin::secp256k1::Signature, ()> {
731                 let mut local_htlc = &crate::lightning::ln::chan_utils::HTLCOutputInCommitment { inner: unsafe { (if htlc.is_none() { std::ptr::null() } else {  { (htlc.as_ref().unwrap()) } } as *const _) as *mut _ }, is_owned: false };
732                 let mut ret = (self.BaseSign.sign_justice_transaction)(self.this_arg, crate::c_types::Transaction::from_bitcoin(justice_tx), input, amount, per_commitment_key.as_ref(), local_htlc);
733                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }).into_rust() }), false => Err( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) })*/ })};
734                 local_ret
735         }
736         fn sign_counterparty_htlc_transaction(&self, htlc_tx: &bitcoin::blockdata::transaction::Transaction, input: usize, amount: u64, per_commitment_point: &bitcoin::secp256k1::key::PublicKey, htlc: &lightning::ln::chan_utils::HTLCOutputInCommitment, _secp_ctx: &bitcoin::secp256k1::Secp256k1<bitcoin::secp256k1::All>) -> Result<bitcoin::secp256k1::Signature, ()> {
737                 let mut ret = (self.BaseSign.sign_counterparty_htlc_transaction)(self.this_arg, crate::c_types::Transaction::from_bitcoin(htlc_tx), input, amount, crate::c_types::PublicKey::from_rust(&per_commitment_point), &crate::lightning::ln::chan_utils::HTLCOutputInCommitment { inner: unsafe { (htlc as *const _) as *mut _ }, is_owned: false });
738                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }).into_rust() }), false => Err( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) })*/ })};
739                 local_ret
740         }
741         fn sign_closing_transaction(&self, closing_tx: &bitcoin::blockdata::transaction::Transaction, _secp_ctx: &bitcoin::secp256k1::Secp256k1<bitcoin::secp256k1::All>) -> Result<bitcoin::secp256k1::Signature, ()> {
742                 let mut ret = (self.BaseSign.sign_closing_transaction)(self.this_arg, crate::c_types::Transaction::from_bitcoin(closing_tx));
743                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }).into_rust() }), false => Err( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) })*/ })};
744                 local_ret
745         }
746         fn sign_channel_announcement(&self, msg: &lightning::ln::msgs::UnsignedChannelAnnouncement, _secp_ctx: &bitcoin::secp256k1::Secp256k1<bitcoin::secp256k1::All>) -> Result<bitcoin::secp256k1::Signature, ()> {
747                 let mut ret = (self.BaseSign.sign_channel_announcement)(self.this_arg, &crate::lightning::ln::msgs::UnsignedChannelAnnouncement { inner: unsafe { (msg as *const _) as *mut _ }, is_owned: false });
748                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }).into_rust() }), false => Err( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) })*/ })};
749                 local_ret
750         }
751         fn ready_channel(&mut self, channel_parameters: &lightning::ln::chan_utils::ChannelTransactionParameters) {
752                 (self.BaseSign.ready_channel)(self.this_arg, &crate::lightning::ln::chan_utils::ChannelTransactionParameters { inner: unsafe { (channel_parameters as *const _) as *mut _ }, is_owned: false })
753         }
754 }
755 unsafe impl Send for Sign {}
756 impl lightning::util::ser::Writeable for Sign {
757         fn write<W: lightning::util::ser::Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
758                 let vec = (self.write)(self.this_arg);
759                 w.write_all(vec.as_slice())
760         }
761 }
762 #[no_mangle]
763 /// Creates a copy of a Sign
764 pub extern "C" fn Sign_clone(orig: &Sign) -> Sign {
765         Sign {
766                 this_arg: if let Some(f) = orig.clone { (f)(orig.this_arg) } else { orig.this_arg },
767                 BaseSign: (orig.BaseSign_clone)(&orig.BaseSign),
768                 BaseSign_clone: orig.BaseSign_clone,
769                 write: Clone::clone(&orig.write),
770                 clone: Clone::clone(&orig.clone),
771                 free: Clone::clone(&orig.free),
772         }
773 }
774 impl Clone for Sign {
775         fn clone(&self) -> Self {
776                 Sign_clone(self)
777         }
778 }
779
780 use lightning::chain::keysinterface::Sign as rustSign;
781 impl rustSign for Sign {
782 }
783
784 // We're essentially a pointer already, or at least a set of pointers, so allow us to be used
785 // directly as a Deref trait in higher-level structs:
786 impl std::ops::Deref for Sign {
787         type Target = Self;
788         fn deref(&self) -> &Self {
789                 self
790         }
791 }
792 /// Calls the free function if one is set
793 #[no_mangle]
794 pub extern "C" fn Sign_free(this_ptr: Sign) { }
795 impl Drop for Sign {
796         fn drop(&mut self) {
797                 if let Some(f) = self.free {
798                         f(self.this_arg);
799                 }
800         }
801 }
802 /// A trait to describe an object which can get user secrets and key material.
803 #[repr(C)]
804 pub struct KeysInterface {
805         /// An opaque pointer which is passed to your function implementations as an argument.
806         /// This has no meaning in the LDK, and can be NULL or any other value.
807         pub this_arg: *mut c_void,
808         /// Get node secret key (aka node_id or network_key).
809         ///
810         /// This method must return the same value each time it is called.
811         #[must_use]
812         pub get_node_secret: extern "C" fn (this_arg: *const c_void) -> crate::c_types::SecretKey,
813         /// Get a script pubkey which we send funds to when claiming on-chain contestable outputs.
814         ///
815         /// This method should return a different value each time it is called, to avoid linking
816         /// on-chain funds across channels as controlled to the same user.
817         #[must_use]
818         pub get_destination_script: extern "C" fn (this_arg: *const c_void) -> crate::c_types::derived::CVec_u8Z,
819         /// Get a public key which we will send funds to (in the form of a P2WPKH output) when closing
820         /// a channel.
821         ///
822         /// This method should return a different value each time it is called, to avoid linking
823         /// on-chain funds across channels as controlled to the same user.
824         #[must_use]
825         pub get_shutdown_pubkey: extern "C" fn (this_arg: *const c_void) -> crate::c_types::PublicKey,
826         /// Get a new set of Sign for per-channel secrets. These MUST be unique even if you
827         /// restarted with some stale data!
828         ///
829         /// This method must return a different value each time it is called.
830         #[must_use]
831         pub get_channel_signer: extern "C" fn (this_arg: *const c_void, inbound: bool, channel_value_satoshis: u64) -> crate::lightning::chain::keysinterface::Sign,
832         /// Gets a unique, cryptographically-secure, random 32 byte value. This is used for encrypting
833         /// onion packets and for temporary channel IDs. There is no requirement that these be
834         /// persisted anywhere, though they must be unique across restarts.
835         ///
836         /// This method must return a different value each time it is called.
837         #[must_use]
838         pub get_secure_random_bytes: extern "C" fn (this_arg: *const c_void) -> crate::c_types::ThirtyTwoBytes,
839         /// Reads a `Signer` for this `KeysInterface` from the given input stream.
840         /// This is only called during deserialization of other objects which contain
841         /// `Sign`-implementing objects (ie `ChannelMonitor`s and `ChannelManager`s).
842         /// The bytes are exactly those which `<Self::Signer as Writeable>::write()` writes, and
843         /// contain no versioning scheme. You may wish to include your own version prefix and ensure
844         /// you've read all of the provided bytes to ensure no corruption occurred.
845         #[must_use]
846         pub read_chan_signer: extern "C" fn (this_arg: *const c_void, reader: crate::c_types::u8slice) -> crate::c_types::derived::CResult_SignDecodeErrorZ,
847         /// Frees any resources associated with this object given its this_arg pointer.
848         /// Does not need to free the outer struct containing function pointers and may be NULL is no resources need to be freed.
849         pub free: Option<extern "C" fn(this_arg: *mut c_void)>,
850 }
851 unsafe impl Send for KeysInterface {}
852 unsafe impl Sync for KeysInterface {}
853
854 use lightning::chain::keysinterface::KeysInterface as rustKeysInterface;
855 impl rustKeysInterface for KeysInterface {
856         type Signer = crate::lightning::chain::keysinterface::Sign;
857         fn get_node_secret(&self) -> bitcoin::secp256k1::key::SecretKey {
858                 let mut ret = (self.get_node_secret)(self.this_arg);
859                 ret.into_rust()
860         }
861         fn get_destination_script(&self) -> bitcoin::blockdata::script::Script {
862                 let mut ret = (self.get_destination_script)(self.this_arg);
863                 ::bitcoin::blockdata::script::Script::from(ret.into_rust())
864         }
865         fn get_shutdown_pubkey(&self) -> bitcoin::secp256k1::key::PublicKey {
866                 let mut ret = (self.get_shutdown_pubkey)(self.this_arg);
867                 ret.into_rust()
868         }
869         fn get_channel_signer(&self, inbound: bool, channel_value_satoshis: u64) -> crate::lightning::chain::keysinterface::Sign {
870                 let mut ret = (self.get_channel_signer)(self.this_arg, inbound, channel_value_satoshis);
871                 ret
872         }
873         fn get_secure_random_bytes(&self) -> [u8; 32] {
874                 let mut ret = (self.get_secure_random_bytes)(self.this_arg);
875                 ret.data
876         }
877         fn read_chan_signer(&self, reader: &[u8]) -> Result<crate::lightning::chain::keysinterface::Sign, lightning::ln::msgs::DecodeError> {
878                 let mut local_reader = crate::c_types::u8slice::from_slice(reader);
879                 let mut ret = (self.read_chan_signer)(self.this_arg, local_reader);
880                 let mut local_ret = match ret.result_ok { true => Ok( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.result)) }) }), false => Err( { *unsafe { Box::from_raw((*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut ret.contents.err)) }).take_inner()) } })};
881                 local_ret
882         }
883 }
884
885 // We're essentially a pointer already, or at least a set of pointers, so allow us to be used
886 // directly as a Deref trait in higher-level structs:
887 impl std::ops::Deref for KeysInterface {
888         type Target = Self;
889         fn deref(&self) -> &Self {
890                 self
891         }
892 }
893 /// Calls the free function if one is set
894 #[no_mangle]
895 pub extern "C" fn KeysInterface_free(this_ptr: KeysInterface) { }
896 impl Drop for KeysInterface {
897         fn drop(&mut self) {
898                 if let Some(f) = self.free {
899                         f(self.this_arg);
900                 }
901         }
902 }
903
904 use lightning::chain::keysinterface::InMemorySigner as nativeInMemorySignerImport;
905 type nativeInMemorySigner = nativeInMemorySignerImport;
906
907 /// A simple implementation of Sign that just keeps the private keys in memory.
908 ///
909 /// This implementation performs no policy checks and is insufficient by itself as
910 /// a secure external signer.
911 #[must_use]
912 #[repr(C)]
913 pub struct InMemorySigner {
914         /// A pointer to the opaque Rust object.
915
916         /// Nearly everywhere, inner must be non-null, however in places where
917         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
918         pub inner: *mut nativeInMemorySigner,
919         /// Indicates that this is the only struct which contains the same pointer.
920
921         /// Rust functions which take ownership of an object provided via an argument require
922         /// this to be true and invalidate the object pointed to by inner.
923         pub is_owned: bool,
924 }
925
926 impl Drop for InMemorySigner {
927         fn drop(&mut self) {
928                 if self.is_owned && !<*mut nativeInMemorySigner>::is_null(self.inner) {
929                         let _ = unsafe { Box::from_raw(self.inner) };
930                 }
931         }
932 }
933 /// Frees any resources used by the InMemorySigner, if is_owned is set and inner is non-NULL.
934 #[no_mangle]
935 pub extern "C" fn InMemorySigner_free(this_obj: InMemorySigner) { }
936 #[allow(unused)]
937 /// Used only if an object of this type is returned as a trait impl by a method
938 extern "C" fn InMemorySigner_free_void(this_ptr: *mut c_void) {
939         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeInMemorySigner); }
940 }
941 #[allow(unused)]
942 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
943 impl InMemorySigner {
944         pub(crate) fn take_inner(mut self) -> *mut nativeInMemorySigner {
945                 assert!(self.is_owned);
946                 let ret = self.inner;
947                 self.inner = std::ptr::null_mut();
948                 ret
949         }
950 }
951 /// Private key of anchor tx
952 #[no_mangle]
953 pub extern "C" fn InMemorySigner_get_funding_key(this_ptr: &InMemorySigner) -> *const [u8; 32] {
954         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.funding_key;
955         inner_val.as_ref()
956 }
957 /// Private key of anchor tx
958 #[no_mangle]
959 pub extern "C" fn InMemorySigner_set_funding_key(this_ptr: &mut InMemorySigner, mut val: crate::c_types::SecretKey) {
960         unsafe { &mut *this_ptr.inner }.funding_key = val.into_rust();
961 }
962 /// Holder secret key for blinded revocation pubkey
963 #[no_mangle]
964 pub extern "C" fn InMemorySigner_get_revocation_base_key(this_ptr: &InMemorySigner) -> *const [u8; 32] {
965         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.revocation_base_key;
966         inner_val.as_ref()
967 }
968 /// Holder secret key for blinded revocation pubkey
969 #[no_mangle]
970 pub extern "C" fn InMemorySigner_set_revocation_base_key(this_ptr: &mut InMemorySigner, mut val: crate::c_types::SecretKey) {
971         unsafe { &mut *this_ptr.inner }.revocation_base_key = val.into_rust();
972 }
973 /// Holder secret key used for our balance in counterparty-broadcasted commitment transactions
974 #[no_mangle]
975 pub extern "C" fn InMemorySigner_get_payment_key(this_ptr: &InMemorySigner) -> *const [u8; 32] {
976         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.payment_key;
977         inner_val.as_ref()
978 }
979 /// Holder secret key used for our balance in counterparty-broadcasted commitment transactions
980 #[no_mangle]
981 pub extern "C" fn InMemorySigner_set_payment_key(this_ptr: &mut InMemorySigner, mut val: crate::c_types::SecretKey) {
982         unsafe { &mut *this_ptr.inner }.payment_key = val.into_rust();
983 }
984 /// Holder secret key used in HTLC tx
985 #[no_mangle]
986 pub extern "C" fn InMemorySigner_get_delayed_payment_base_key(this_ptr: &InMemorySigner) -> *const [u8; 32] {
987         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.delayed_payment_base_key;
988         inner_val.as_ref()
989 }
990 /// Holder secret key used in HTLC tx
991 #[no_mangle]
992 pub extern "C" fn InMemorySigner_set_delayed_payment_base_key(this_ptr: &mut InMemorySigner, mut val: crate::c_types::SecretKey) {
993         unsafe { &mut *this_ptr.inner }.delayed_payment_base_key = val.into_rust();
994 }
995 /// Holder htlc secret key used in commitment tx htlc outputs
996 #[no_mangle]
997 pub extern "C" fn InMemorySigner_get_htlc_base_key(this_ptr: &InMemorySigner) -> *const [u8; 32] {
998         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.htlc_base_key;
999         inner_val.as_ref()
1000 }
1001 /// Holder htlc secret key used in commitment tx htlc outputs
1002 #[no_mangle]
1003 pub extern "C" fn InMemorySigner_set_htlc_base_key(this_ptr: &mut InMemorySigner, mut val: crate::c_types::SecretKey) {
1004         unsafe { &mut *this_ptr.inner }.htlc_base_key = val.into_rust();
1005 }
1006 /// Commitment seed
1007 #[no_mangle]
1008 pub extern "C" fn InMemorySigner_get_commitment_seed(this_ptr: &InMemorySigner) -> *const [u8; 32] {
1009         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.commitment_seed;
1010         inner_val
1011 }
1012 /// Commitment seed
1013 #[no_mangle]
1014 pub extern "C" fn InMemorySigner_set_commitment_seed(this_ptr: &mut InMemorySigner, mut val: crate::c_types::ThirtyTwoBytes) {
1015         unsafe { &mut *this_ptr.inner }.commitment_seed = val.data;
1016 }
1017 impl Clone for InMemorySigner {
1018         fn clone(&self) -> Self {
1019                 Self {
1020                         inner: if <*mut nativeInMemorySigner>::is_null(self.inner) { std::ptr::null_mut() } else {
1021                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
1022                         is_owned: true,
1023                 }
1024         }
1025 }
1026 #[allow(unused)]
1027 /// Used only if an object of this type is returned as a trait impl by a method
1028 pub(crate) extern "C" fn InMemorySigner_clone_void(this_ptr: *const c_void) -> *mut c_void {
1029         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeInMemorySigner)).clone() })) as *mut c_void
1030 }
1031 #[no_mangle]
1032 /// Creates a copy of the InMemorySigner
1033 pub extern "C" fn InMemorySigner_clone(orig: &InMemorySigner) -> InMemorySigner {
1034         orig.clone()
1035 }
1036 /// Create a new InMemorySigner
1037 #[must_use]
1038 #[no_mangle]
1039 pub extern "C" fn InMemorySigner_new(mut funding_key: crate::c_types::SecretKey, mut revocation_base_key: crate::c_types::SecretKey, mut payment_key: crate::c_types::SecretKey, mut delayed_payment_base_key: crate::c_types::SecretKey, mut htlc_base_key: crate::c_types::SecretKey, mut commitment_seed: crate::c_types::ThirtyTwoBytes, mut channel_value_satoshis: u64, mut channel_keys_id: crate::c_types::ThirtyTwoBytes) -> crate::lightning::chain::keysinterface::InMemorySigner {
1040         let mut ret = lightning::chain::keysinterface::InMemorySigner::new(secp256k1::SECP256K1, funding_key.into_rust(), revocation_base_key.into_rust(), payment_key.into_rust(), delayed_payment_base_key.into_rust(), htlc_base_key.into_rust(), commitment_seed.data, channel_value_satoshis, channel_keys_id.data);
1041         crate::lightning::chain::keysinterface::InMemorySigner { inner: Box::into_raw(Box::new(ret)), is_owned: true }
1042 }
1043
1044 /// Counterparty pubkeys.
1045 /// Will panic if ready_channel wasn't called.
1046 #[must_use]
1047 #[no_mangle]
1048 pub extern "C" fn InMemorySigner_counterparty_pubkeys(this_arg: &InMemorySigner) -> crate::lightning::ln::chan_utils::ChannelPublicKeys {
1049         let mut ret = unsafe { &*this_arg.inner }.counterparty_pubkeys();
1050         crate::lightning::ln::chan_utils::ChannelPublicKeys { inner: unsafe { ( (&(*ret) as *const _) as *mut _) }, is_owned: false }
1051 }
1052
1053 /// The contest_delay value specified by our counterparty and applied on holder-broadcastable
1054 /// transactions, ie the amount of time that we have to wait to recover our funds if we
1055 /// broadcast a transaction.
1056 /// Will panic if ready_channel wasn't called.
1057 #[must_use]
1058 #[no_mangle]
1059 pub extern "C" fn InMemorySigner_counterparty_selected_contest_delay(this_arg: &InMemorySigner) -> u16 {
1060         let mut ret = unsafe { &*this_arg.inner }.counterparty_selected_contest_delay();
1061         ret
1062 }
1063
1064 /// The contest_delay value specified by us and applied on transactions broadcastable
1065 /// by our counterparty, ie the amount of time that they have to wait to recover their funds
1066 /// if they broadcast a transaction.
1067 /// Will panic if ready_channel wasn't called.
1068 #[must_use]
1069 #[no_mangle]
1070 pub extern "C" fn InMemorySigner_holder_selected_contest_delay(this_arg: &InMemorySigner) -> u16 {
1071         let mut ret = unsafe { &*this_arg.inner }.holder_selected_contest_delay();
1072         ret
1073 }
1074
1075 /// Whether the holder is the initiator
1076 /// Will panic if ready_channel wasn't called.
1077 #[must_use]
1078 #[no_mangle]
1079 pub extern "C" fn InMemorySigner_is_outbound(this_arg: &InMemorySigner) -> bool {
1080         let mut ret = unsafe { &*this_arg.inner }.is_outbound();
1081         ret
1082 }
1083
1084 /// Funding outpoint
1085 /// Will panic if ready_channel wasn't called.
1086 #[must_use]
1087 #[no_mangle]
1088 pub extern "C" fn InMemorySigner_funding_outpoint(this_arg: &InMemorySigner) -> crate::lightning::chain::transaction::OutPoint {
1089         let mut ret = unsafe { &*this_arg.inner }.funding_outpoint();
1090         crate::lightning::chain::transaction::OutPoint { inner: unsafe { ( (&(*ret) as *const _) as *mut _) }, is_owned: false }
1091 }
1092
1093 /// Obtain a ChannelTransactionParameters for this channel, to be used when verifying or
1094 /// building transactions.
1095 ///
1096 /// Will panic if ready_channel wasn't called.
1097 #[must_use]
1098 #[no_mangle]
1099 pub extern "C" fn InMemorySigner_get_channel_parameters(this_arg: &InMemorySigner) -> crate::lightning::ln::chan_utils::ChannelTransactionParameters {
1100         let mut ret = unsafe { &*this_arg.inner }.get_channel_parameters();
1101         crate::lightning::ln::chan_utils::ChannelTransactionParameters { inner: unsafe { ( (&(*ret) as *const _) as *mut _) }, is_owned: false }
1102 }
1103
1104 /// Sign the single input of spend_tx at index `input_idx` which spends the output
1105 /// described by descriptor, returning the witness stack for the input.
1106 ///
1107 /// Returns an Err if the input at input_idx does not exist, has a non-empty script_sig,
1108 /// or is not spending the outpoint described by `descriptor.outpoint`.
1109 #[must_use]
1110 #[no_mangle]
1111 pub extern "C" fn InMemorySigner_sign_counterparty_payment_input(this_arg: &InMemorySigner, mut spend_tx: crate::c_types::Transaction, mut input_idx: usize, descriptor: &crate::lightning::chain::keysinterface::StaticPaymentOutputDescriptor) -> crate::c_types::derived::CResult_CVec_CVec_u8ZZNoneZ {
1112         let mut ret = unsafe { &*this_arg.inner }.sign_counterparty_payment_input(&spend_tx.into_bitcoin(), input_idx, unsafe { &*descriptor.inner }, secp256k1::SECP256K1);
1113         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { let mut local_ret_0 = Vec::new(); for mut item in o.drain(..) { local_ret_0.push( { let mut local_ret_0_0 = Vec::new(); for mut item in item.drain(..) { local_ret_0_0.push( { item }); }; local_ret_0_0.into() }); }; local_ret_0.into() }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }).into() };
1114         local_ret
1115 }
1116
1117 /// Sign the single input of spend_tx at index `input_idx` which spends the output
1118 /// described by descriptor, returning the witness stack for the input.
1119 ///
1120 /// Returns an Err if the input at input_idx does not exist, has a non-empty script_sig,
1121 /// is not spending the outpoint described by `descriptor.outpoint`, or does not have a
1122 /// sequence set to `descriptor.to_self_delay`.
1123 #[must_use]
1124 #[no_mangle]
1125 pub extern "C" fn InMemorySigner_sign_dynamic_p2wsh_input(this_arg: &InMemorySigner, mut spend_tx: crate::c_types::Transaction, mut input_idx: usize, descriptor: &crate::lightning::chain::keysinterface::DelayedPaymentOutputDescriptor) -> crate::c_types::derived::CResult_CVec_CVec_u8ZZNoneZ {
1126         let mut ret = unsafe { &*this_arg.inner }.sign_dynamic_p2wsh_input(&spend_tx.into_bitcoin(), input_idx, unsafe { &*descriptor.inner }, secp256k1::SECP256K1);
1127         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { let mut local_ret_0 = Vec::new(); for mut item in o.drain(..) { local_ret_0.push( { let mut local_ret_0_0 = Vec::new(); for mut item in item.drain(..) { local_ret_0_0.push( { item }); }; local_ret_0_0.into() }); }; local_ret_0.into() }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }).into() };
1128         local_ret
1129 }
1130
1131 impl From<nativeInMemorySigner> for crate::lightning::chain::keysinterface::BaseSign {
1132         fn from(obj: nativeInMemorySigner) -> Self {
1133                 let mut rust_obj = InMemorySigner { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1134                 let mut ret = InMemorySigner_as_BaseSign(&rust_obj);
1135                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
1136                 rust_obj.inner = std::ptr::null_mut();
1137                 ret.free = Some(InMemorySigner_free_void);
1138                 ret
1139         }
1140 }
1141 /// Constructs a new BaseSign which calls the relevant methods on this_arg.
1142 /// This copies the `inner` pointer in this_arg and thus the returned BaseSign must be freed before this_arg is
1143 #[no_mangle]
1144 pub extern "C" fn InMemorySigner_as_BaseSign(this_arg: &InMemorySigner) -> crate::lightning::chain::keysinterface::BaseSign {
1145         crate::lightning::chain::keysinterface::BaseSign {
1146                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1147                 free: None,
1148                 get_per_commitment_point: InMemorySigner_BaseSign_get_per_commitment_point,
1149                 release_commitment_secret: InMemorySigner_BaseSign_release_commitment_secret,
1150
1151                 pubkeys: crate::lightning::ln::chan_utils::ChannelPublicKeys { inner: std::ptr::null_mut(), is_owned: true },
1152                 set_pubkeys: Some(InMemorySigner_BaseSign_set_pubkeys),
1153                 channel_keys_id: InMemorySigner_BaseSign_channel_keys_id,
1154                 sign_counterparty_commitment: InMemorySigner_BaseSign_sign_counterparty_commitment,
1155                 sign_holder_commitment_and_htlcs: InMemorySigner_BaseSign_sign_holder_commitment_and_htlcs,
1156                 sign_justice_transaction: InMemorySigner_BaseSign_sign_justice_transaction,
1157                 sign_counterparty_htlc_transaction: InMemorySigner_BaseSign_sign_counterparty_htlc_transaction,
1158                 sign_closing_transaction: InMemorySigner_BaseSign_sign_closing_transaction,
1159                 sign_channel_announcement: InMemorySigner_BaseSign_sign_channel_announcement,
1160                 ready_channel: InMemorySigner_BaseSign_ready_channel,
1161         }
1162 }
1163
1164 #[must_use]
1165 extern "C" fn InMemorySigner_BaseSign_get_per_commitment_point(this_arg: *const c_void, mut idx: u64) -> crate::c_types::PublicKey {
1166         let mut ret = <nativeInMemorySigner as lightning::chain::keysinterface::BaseSign<>>::get_per_commitment_point(unsafe { &mut *(this_arg as *mut nativeInMemorySigner) }, idx, secp256k1::SECP256K1);
1167         crate::c_types::PublicKey::from_rust(&ret)
1168 }
1169 #[must_use]
1170 extern "C" fn InMemorySigner_BaseSign_release_commitment_secret(this_arg: *const c_void, mut idx: u64) -> crate::c_types::ThirtyTwoBytes {
1171         let mut ret = <nativeInMemorySigner as lightning::chain::keysinterface::BaseSign<>>::release_commitment_secret(unsafe { &mut *(this_arg as *mut nativeInMemorySigner) }, idx);
1172         crate::c_types::ThirtyTwoBytes { data: ret }
1173 }
1174 #[must_use]
1175 extern "C" fn InMemorySigner_BaseSign_pubkeys(this_arg: *const c_void) -> crate::lightning::ln::chan_utils::ChannelPublicKeys {
1176         let mut ret = <nativeInMemorySigner as lightning::chain::keysinterface::BaseSign<>>::pubkeys(unsafe { &mut *(this_arg as *mut nativeInMemorySigner) }, );
1177         crate::lightning::ln::chan_utils::ChannelPublicKeys { inner: unsafe { ( (&(*ret) as *const _) as *mut _) }, is_owned: false }
1178 }
1179 extern "C" fn InMemorySigner_BaseSign_set_pubkeys(trait_self_arg: &BaseSign) {
1180         // This is a bit race-y in the general case, but for our specific use-cases today, we're safe
1181         // Specifically, we must ensure that the first time we're called it can never be in parallel
1182         if trait_self_arg.pubkeys.inner.is_null() {
1183                 unsafe { &mut *(trait_self_arg as *const BaseSign  as *mut BaseSign) }.pubkeys = InMemorySigner_BaseSign_pubkeys(trait_self_arg.this_arg);
1184         }
1185 }
1186 #[must_use]
1187 extern "C" fn InMemorySigner_BaseSign_channel_keys_id(this_arg: *const c_void) -> crate::c_types::ThirtyTwoBytes {
1188         let mut ret = <nativeInMemorySigner as lightning::chain::keysinterface::BaseSign<>>::channel_keys_id(unsafe { &mut *(this_arg as *mut nativeInMemorySigner) }, );
1189         crate::c_types::ThirtyTwoBytes { data: ret }
1190 }
1191 #[must_use]
1192 extern "C" fn InMemorySigner_BaseSign_sign_counterparty_commitment(this_arg: *const c_void, commitment_tx: &crate::lightning::ln::chan_utils::CommitmentTransaction) -> crate::c_types::derived::CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ {
1193         let mut ret = <nativeInMemorySigner as lightning::chain::keysinterface::BaseSign<>>::sign_counterparty_commitment(unsafe { &mut *(this_arg as *mut nativeInMemorySigner) }, unsafe { &*commitment_tx.inner }, secp256k1::SECP256K1);
1194         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { let (mut orig_ret_0_0, mut orig_ret_0_1) = o; let mut local_orig_ret_0_1 = Vec::new(); for mut item in orig_ret_0_1.drain(..) { local_orig_ret_0_1.push( { crate::c_types::Signature::from_rust(&item) }); }; let mut local_ret_0 = (crate::c_types::Signature::from_rust(&orig_ret_0_0), local_orig_ret_0_1.into()).into(); local_ret_0 }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }).into() };
1195         local_ret
1196 }
1197 #[must_use]
1198 extern "C" fn InMemorySigner_BaseSign_sign_holder_commitment_and_htlcs(this_arg: *const c_void, commitment_tx: &crate::lightning::ln::chan_utils::HolderCommitmentTransaction) -> crate::c_types::derived::CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ {
1199         let mut ret = <nativeInMemorySigner as lightning::chain::keysinterface::BaseSign<>>::sign_holder_commitment_and_htlcs(unsafe { &mut *(this_arg as *mut nativeInMemorySigner) }, unsafe { &*commitment_tx.inner }, secp256k1::SECP256K1);
1200         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { let (mut orig_ret_0_0, mut orig_ret_0_1) = o; let mut local_orig_ret_0_1 = Vec::new(); for mut item in orig_ret_0_1.drain(..) { local_orig_ret_0_1.push( { crate::c_types::Signature::from_rust(&item) }); }; let mut local_ret_0 = (crate::c_types::Signature::from_rust(&orig_ret_0_0), local_orig_ret_0_1.into()).into(); local_ret_0 }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }).into() };
1201         local_ret
1202 }
1203 #[must_use]
1204 extern "C" fn InMemorySigner_BaseSign_sign_justice_transaction(this_arg: *const c_void, mut justice_tx: crate::c_types::Transaction, mut input: usize, mut amount: u64, per_commitment_key: *const [u8; 32], htlc: &crate::lightning::ln::chan_utils::HTLCOutputInCommitment) -> crate::c_types::derived::CResult_SignatureNoneZ {
1205         let mut local_htlc = if htlc.inner.is_null() { None } else { Some((* { unsafe { &*htlc.inner } }).clone()) };
1206         let mut ret = <nativeInMemorySigner as lightning::chain::keysinterface::BaseSign<>>::sign_justice_transaction(unsafe { &mut *(this_arg as *mut nativeInMemorySigner) }, &justice_tx.into_bitcoin(), input, amount, &::bitcoin::secp256k1::key::SecretKey::from_slice(&unsafe { *per_commitment_key}[..]).unwrap(), &local_htlc, secp256k1::SECP256K1);
1207         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::Signature::from_rust(&o) }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }).into() };
1208         local_ret
1209 }
1210 #[must_use]
1211 extern "C" fn InMemorySigner_BaseSign_sign_counterparty_htlc_transaction(this_arg: *const c_void, mut htlc_tx: crate::c_types::Transaction, mut input: usize, mut amount: u64, mut per_commitment_point: crate::c_types::PublicKey, htlc: &crate::lightning::ln::chan_utils::HTLCOutputInCommitment) -> crate::c_types::derived::CResult_SignatureNoneZ {
1212         let mut ret = <nativeInMemorySigner as lightning::chain::keysinterface::BaseSign<>>::sign_counterparty_htlc_transaction(unsafe { &mut *(this_arg as *mut nativeInMemorySigner) }, &htlc_tx.into_bitcoin(), input, amount, &per_commitment_point.into_rust(), unsafe { &*htlc.inner }, secp256k1::SECP256K1);
1213         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::Signature::from_rust(&o) }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }).into() };
1214         local_ret
1215 }
1216 #[must_use]
1217 extern "C" fn InMemorySigner_BaseSign_sign_closing_transaction(this_arg: *const c_void, mut closing_tx: crate::c_types::Transaction) -> crate::c_types::derived::CResult_SignatureNoneZ {
1218         let mut ret = <nativeInMemorySigner as lightning::chain::keysinterface::BaseSign<>>::sign_closing_transaction(unsafe { &mut *(this_arg as *mut nativeInMemorySigner) }, &closing_tx.into_bitcoin(), secp256k1::SECP256K1);
1219         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::Signature::from_rust(&o) }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }).into() };
1220         local_ret
1221 }
1222 #[must_use]
1223 extern "C" fn InMemorySigner_BaseSign_sign_channel_announcement(this_arg: *const c_void, msg: &crate::lightning::ln::msgs::UnsignedChannelAnnouncement) -> crate::c_types::derived::CResult_SignatureNoneZ {
1224         let mut ret = <nativeInMemorySigner as lightning::chain::keysinterface::BaseSign<>>::sign_channel_announcement(unsafe { &mut *(this_arg as *mut nativeInMemorySigner) }, unsafe { &*msg.inner }, secp256k1::SECP256K1);
1225         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::Signature::from_rust(&o) }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }).into() };
1226         local_ret
1227 }
1228 extern "C" fn InMemorySigner_BaseSign_ready_channel(this_arg: *mut c_void, channel_parameters: &crate::lightning::ln::chan_utils::ChannelTransactionParameters) {
1229         <nativeInMemorySigner as lightning::chain::keysinterface::BaseSign<>>::ready_channel(unsafe { &mut *(this_arg as *mut nativeInMemorySigner) }, unsafe { &*channel_parameters.inner })
1230 }
1231
1232 impl From<nativeInMemorySigner> for crate::lightning::chain::keysinterface::Sign {
1233         fn from(obj: nativeInMemorySigner) -> Self {
1234                 let mut rust_obj = InMemorySigner { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1235                 let mut ret = InMemorySigner_as_Sign(&rust_obj);
1236                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
1237                 rust_obj.inner = std::ptr::null_mut();
1238                 ret.free = Some(InMemorySigner_free_void);
1239                 ret
1240         }
1241 }
1242 /// Constructs a new Sign which calls the relevant methods on this_arg.
1243 /// This copies the `inner` pointer in this_arg and thus the returned Sign must be freed before this_arg is
1244 #[no_mangle]
1245 pub extern "C" fn InMemorySigner_as_Sign(this_arg: &InMemorySigner) -> crate::lightning::chain::keysinterface::Sign {
1246         crate::lightning::chain::keysinterface::Sign {
1247                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1248                 free: None,
1249                 BaseSign: crate::lightning::chain::keysinterface::BaseSign {
1250                         this_arg: unsafe { (*this_arg).inner as *mut c_void },
1251                         free: None,
1252                         get_per_commitment_point: InMemorySigner_BaseSign_get_per_commitment_point,
1253                         release_commitment_secret: InMemorySigner_BaseSign_release_commitment_secret,
1254
1255                         pubkeys: crate::lightning::ln::chan_utils::ChannelPublicKeys { inner: std::ptr::null_mut(), is_owned: true },
1256                         set_pubkeys: Some(InMemorySigner_BaseSign_set_pubkeys),
1257                         channel_keys_id: InMemorySigner_BaseSign_channel_keys_id,
1258                         sign_counterparty_commitment: InMemorySigner_BaseSign_sign_counterparty_commitment,
1259                         sign_holder_commitment_and_htlcs: InMemorySigner_BaseSign_sign_holder_commitment_and_htlcs,
1260                         sign_justice_transaction: InMemorySigner_BaseSign_sign_justice_transaction,
1261                         sign_counterparty_htlc_transaction: InMemorySigner_BaseSign_sign_counterparty_htlc_transaction,
1262                         sign_closing_transaction: InMemorySigner_BaseSign_sign_closing_transaction,
1263                         sign_channel_announcement: InMemorySigner_BaseSign_sign_channel_announcement,
1264                         ready_channel: InMemorySigner_BaseSign_ready_channel,
1265                 },
1266                 BaseSign_clone: InMemorySigner_BaseSign_clone,
1267                 write: InMemorySigner_write_void,
1268                 clone: Some(InMemorySigner_clone_void),
1269         }
1270 }
1271
1272 extern "C" fn InMemorySigner_BaseSign_clone(orig: &crate::lightning::chain::keysinterface::BaseSign) -> crate::lightning::chain::keysinterface::BaseSign {
1273         crate::lightning::chain::keysinterface::BaseSign {
1274                 this_arg: orig.this_arg,
1275                 free: None,
1276                 get_per_commitment_point: InMemorySigner_BaseSign_get_per_commitment_point,
1277                 release_commitment_secret: InMemorySigner_BaseSign_release_commitment_secret,
1278
1279                 pubkeys: crate::lightning::ln::chan_utils::ChannelPublicKeys { inner: std::ptr::null_mut(), is_owned: true },
1280                 set_pubkeys: Some(InMemorySigner_BaseSign_set_pubkeys),
1281                 channel_keys_id: InMemorySigner_BaseSign_channel_keys_id,
1282                 sign_counterparty_commitment: InMemorySigner_BaseSign_sign_counterparty_commitment,
1283                 sign_holder_commitment_and_htlcs: InMemorySigner_BaseSign_sign_holder_commitment_and_htlcs,
1284                 sign_justice_transaction: InMemorySigner_BaseSign_sign_justice_transaction,
1285                 sign_counterparty_htlc_transaction: InMemorySigner_BaseSign_sign_counterparty_htlc_transaction,
1286                 sign_closing_transaction: InMemorySigner_BaseSign_sign_closing_transaction,
1287                 sign_channel_announcement: InMemorySigner_BaseSign_sign_channel_announcement,
1288                 ready_channel: InMemorySigner_BaseSign_ready_channel,
1289         }
1290 }
1291
1292 #[no_mangle]
1293 /// Serialize the InMemorySigner object into a byte array which can be read by InMemorySigner_read
1294 pub extern "C" fn InMemorySigner_write(obj: &InMemorySigner) -> crate::c_types::derived::CVec_u8Z {
1295         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
1296 }
1297 #[no_mangle]
1298 pub(crate) extern "C" fn InMemorySigner_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1299         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeInMemorySigner) })
1300 }
1301 #[no_mangle]
1302 /// Read a InMemorySigner from a byte array, created by InMemorySigner_write
1303 pub extern "C" fn InMemorySigner_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_InMemorySignerDecodeErrorZ {
1304         let res = crate::c_types::deserialize_obj(ser);
1305         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::chain::keysinterface::InMemorySigner { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
1306         local_res
1307 }
1308
1309 use lightning::chain::keysinterface::KeysManager as nativeKeysManagerImport;
1310 type nativeKeysManager = nativeKeysManagerImport;
1311
1312 /// Simple KeysInterface implementor that takes a 32-byte seed for use as a BIP 32 extended key
1313 /// and derives keys from that.
1314 ///
1315 /// Your node_id is seed/0'
1316 /// ChannelMonitor closes may use seed/1'
1317 /// Cooperative closes may use seed/2'
1318 /// The two close keys may be needed to claim on-chain funds!
1319 #[must_use]
1320 #[repr(C)]
1321 pub struct KeysManager {
1322         /// A pointer to the opaque Rust object.
1323
1324         /// Nearly everywhere, inner must be non-null, however in places where
1325         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1326         pub inner: *mut nativeKeysManager,
1327         /// Indicates that this is the only struct which contains the same pointer.
1328
1329         /// Rust functions which take ownership of an object provided via an argument require
1330         /// this to be true and invalidate the object pointed to by inner.
1331         pub is_owned: bool,
1332 }
1333
1334 impl Drop for KeysManager {
1335         fn drop(&mut self) {
1336                 if self.is_owned && !<*mut nativeKeysManager>::is_null(self.inner) {
1337                         let _ = unsafe { Box::from_raw(self.inner) };
1338                 }
1339         }
1340 }
1341 /// Frees any resources used by the KeysManager, if is_owned is set and inner is non-NULL.
1342 #[no_mangle]
1343 pub extern "C" fn KeysManager_free(this_obj: KeysManager) { }
1344 #[allow(unused)]
1345 /// Used only if an object of this type is returned as a trait impl by a method
1346 extern "C" fn KeysManager_free_void(this_ptr: *mut c_void) {
1347         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeKeysManager); }
1348 }
1349 #[allow(unused)]
1350 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1351 impl KeysManager {
1352         pub(crate) fn take_inner(mut self) -> *mut nativeKeysManager {
1353                 assert!(self.is_owned);
1354                 let ret = self.inner;
1355                 self.inner = std::ptr::null_mut();
1356                 ret
1357         }
1358 }
1359 /// Constructs a KeysManager from a 32-byte seed. If the seed is in some way biased (eg your
1360 /// CSRNG is busted) this may panic (but more importantly, you will possibly lose funds).
1361 /// starting_time isn't strictly required to actually be a time, but it must absolutely,
1362 /// without a doubt, be unique to this instance. ie if you start multiple times with the same
1363 /// seed, starting_time must be unique to each run. Thus, the easiest way to achieve this is to
1364 /// simply use the current time (with very high precision).
1365 ///
1366 /// The seed MUST be backed up safely prior to use so that the keys can be re-created, however,
1367 /// obviously, starting_time should be unique every time you reload the library - it is only
1368 /// used to generate new ephemeral key data (which will be stored by the individual channel if
1369 /// necessary).
1370 ///
1371 /// Note that the seed is required to recover certain on-chain funds independent of
1372 /// ChannelMonitor data, though a current copy of ChannelMonitor data is also required for any
1373 /// channel, and some on-chain during-closing funds.
1374 ///
1375 /// Note that until the 0.1 release there is no guarantee of backward compatibility between
1376 /// versions. Once the library is more fully supported, the docs will be updated to include a
1377 /// detailed description of the guarantee.
1378 #[must_use]
1379 #[no_mangle]
1380 pub extern "C" fn KeysManager_new(seed: *const [u8; 32], mut starting_time_secs: u64, mut starting_time_nanos: u32) -> KeysManager {
1381         let mut ret = lightning::chain::keysinterface::KeysManager::new(unsafe { &*seed}, starting_time_secs, starting_time_nanos);
1382         KeysManager { inner: Box::into_raw(Box::new(ret)), is_owned: true }
1383 }
1384
1385 /// Derive an old Sign containing per-channel secrets based on a key derivation parameters.
1386 ///
1387 /// Key derivation parameters are accessible through a per-channel secrets
1388 /// Sign::channel_keys_id and is provided inside DynamicOuputP2WSH in case of
1389 /// onchain output detection for which a corresponding delayed_payment_key must be derived.
1390 #[must_use]
1391 #[no_mangle]
1392 pub extern "C" fn KeysManager_derive_channel_keys(this_arg: &KeysManager, mut channel_value_satoshis: u64, params: *const [u8; 32]) -> crate::lightning::chain::keysinterface::InMemorySigner {
1393         let mut ret = unsafe { &*this_arg.inner }.derive_channel_keys(channel_value_satoshis, unsafe { &*params});
1394         crate::lightning::chain::keysinterface::InMemorySigner { inner: Box::into_raw(Box::new(ret)), is_owned: true }
1395 }
1396
1397 /// Creates a Transaction which spends the given descriptors to the given outputs, plus an
1398 /// output to the given change destination (if sufficient change value remains). The
1399 /// transaction will have a feerate, at least, of the given value.
1400 ///
1401 /// Returns `Err(())` if the output value is greater than the input value minus required fee or
1402 /// if a descriptor was duplicated.
1403 ///
1404 /// We do not enforce that outputs meet the dust limit or that any output scripts are standard.
1405 ///
1406 /// May panic if the `SpendableOutputDescriptor`s were not generated by Channels which used
1407 /// this KeysManager or one of the `InMemorySigner` created by this KeysManager.
1408 #[must_use]
1409 #[no_mangle]
1410 pub extern "C" fn KeysManager_spend_spendable_outputs(this_arg: &KeysManager, mut descriptors: crate::c_types::derived::CVec_SpendableOutputDescriptorZ, mut outputs: crate::c_types::derived::CVec_TxOutZ, mut change_destination_script: crate::c_types::derived::CVec_u8Z, mut feerate_sat_per_1000_weight: u32) -> crate::c_types::derived::CResult_TransactionNoneZ {
1411         let mut local_descriptors = Vec::new(); for mut item in descriptors.into_rust().drain(..) { local_descriptors.push( { item.into_native() }); };
1412         let mut local_outputs = Vec::new(); for mut item in outputs.into_rust().drain(..) { local_outputs.push( { item.into_rust() }); };
1413         let mut ret = unsafe { &*this_arg.inner }.spend_spendable_outputs(&local_descriptors.iter().collect::<Vec<_>>()[..], local_outputs, ::bitcoin::blockdata::script::Script::from(change_destination_script.into_rust()), feerate_sat_per_1000_weight, secp256k1::SECP256K1);
1414         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::Transaction::from_bitcoin(&o) }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { 0u8 /*e*/ }).into() };
1415         local_ret
1416 }
1417
1418 impl From<nativeKeysManager> for crate::lightning::chain::keysinterface::KeysInterface {
1419         fn from(obj: nativeKeysManager) -> Self {
1420                 let mut rust_obj = KeysManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1421                 let mut ret = KeysManager_as_KeysInterface(&rust_obj);
1422                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
1423                 rust_obj.inner = std::ptr::null_mut();
1424                 ret.free = Some(KeysManager_free_void);
1425                 ret
1426         }
1427 }
1428 /// Constructs a new KeysInterface which calls the relevant methods on this_arg.
1429 /// This copies the `inner` pointer in this_arg and thus the returned KeysInterface must be freed before this_arg is
1430 #[no_mangle]
1431 pub extern "C" fn KeysManager_as_KeysInterface(this_arg: &KeysManager) -> crate::lightning::chain::keysinterface::KeysInterface {
1432         crate::lightning::chain::keysinterface::KeysInterface {
1433                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1434                 free: None,
1435                 get_node_secret: KeysManager_KeysInterface_get_node_secret,
1436                 get_destination_script: KeysManager_KeysInterface_get_destination_script,
1437                 get_shutdown_pubkey: KeysManager_KeysInterface_get_shutdown_pubkey,
1438                 get_channel_signer: KeysManager_KeysInterface_get_channel_signer,
1439                 get_secure_random_bytes: KeysManager_KeysInterface_get_secure_random_bytes,
1440                 read_chan_signer: KeysManager_KeysInterface_read_chan_signer,
1441         }
1442 }
1443
1444 #[must_use]
1445 extern "C" fn KeysManager_KeysInterface_get_node_secret(this_arg: *const c_void) -> crate::c_types::SecretKey {
1446         let mut ret = <nativeKeysManager as lightning::chain::keysinterface::KeysInterface<>>::get_node_secret(unsafe { &mut *(this_arg as *mut nativeKeysManager) }, );
1447         crate::c_types::SecretKey::from_rust(ret)
1448 }
1449 #[must_use]
1450 extern "C" fn KeysManager_KeysInterface_get_destination_script(this_arg: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1451         let mut ret = <nativeKeysManager as lightning::chain::keysinterface::KeysInterface<>>::get_destination_script(unsafe { &mut *(this_arg as *mut nativeKeysManager) }, );
1452         ret.into_bytes().into()
1453 }
1454 #[must_use]
1455 extern "C" fn KeysManager_KeysInterface_get_shutdown_pubkey(this_arg: *const c_void) -> crate::c_types::PublicKey {
1456         let mut ret = <nativeKeysManager as lightning::chain::keysinterface::KeysInterface<>>::get_shutdown_pubkey(unsafe { &mut *(this_arg as *mut nativeKeysManager) }, );
1457         crate::c_types::PublicKey::from_rust(&ret)
1458 }
1459 #[must_use]
1460 extern "C" fn KeysManager_KeysInterface_get_channel_signer(this_arg: *const c_void, mut _inbound: bool, mut channel_value_satoshis: u64) -> crate::lightning::chain::keysinterface::Sign {
1461         let mut ret = <nativeKeysManager as lightning::chain::keysinterface::KeysInterface<>>::get_channel_signer(unsafe { &mut *(this_arg as *mut nativeKeysManager) }, _inbound, channel_value_satoshis);
1462         ret.into()
1463 }
1464 #[must_use]
1465 extern "C" fn KeysManager_KeysInterface_get_secure_random_bytes(this_arg: *const c_void) -> crate::c_types::ThirtyTwoBytes {
1466         let mut ret = <nativeKeysManager as lightning::chain::keysinterface::KeysInterface<>>::get_secure_random_bytes(unsafe { &mut *(this_arg as *mut nativeKeysManager) }, );
1467         crate::c_types::ThirtyTwoBytes { data: ret }
1468 }
1469 #[must_use]
1470 extern "C" fn KeysManager_KeysInterface_read_chan_signer(this_arg: *const c_void, mut reader: crate::c_types::u8slice) -> crate::c_types::derived::CResult_SignDecodeErrorZ {
1471         let mut ret = <nativeKeysManager as lightning::chain::keysinterface::KeysInterface<>>::read_chan_signer(unsafe { &mut *(this_arg as *mut nativeKeysManager) }, reader.to_slice());
1472         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { o.into() }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
1473         local_ret
1474 }
1475