[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / HtlcBasepoint.cs
1 using org.ldk.impl;
2 using org.ldk.enums;
3 using org.ldk.util;
4 using System;
5
6 namespace org { namespace ldk { namespace structs {
7
8
9 /**
10  * Base key used in conjunction with a `per_commitment_point` to generate an [`HtlcKey`].
11  * 
12  * HTLC keys are used to ensure only the recipient of an HTLC can claim it on-chain with the HTLC
13  * preimage and that only the sender of an HTLC can claim it on-chain after it has timed out.
14  * Thus, both channel counterparties' HTLC keys will appears in each HTLC output's script.
15  */
16 public class HtlcBasepoint : CommonBase {
17         internal HtlcBasepoint(object _dummy, long ptr) : base(ptr) { }
18         ~HtlcBasepoint() {
19                 if (ptr != 0) { bindings.HtlcBasepoint_free(ptr); }
20         }
21
22         public byte[] get_a() {
23                 long ret = bindings.HtlcBasepoint_get_a(this.ptr);
24                 GC.KeepAlive(this);
25                 if (ret >= 0 && ret <= 4096) { return null; }
26                 byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
27                 return ret_conv;
28         }
29
30         public void set_a(byte[] val) {
31                 bindings.HtlcBasepoint_set_a(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 33)));
32                 GC.KeepAlive(this);
33                 GC.KeepAlive(val);
34         }
35
36         /**
37          * Constructs a new HtlcBasepoint given each field
38          */
39         public static HtlcBasepoint of(byte[] a_arg) {
40                 long ret = bindings.HtlcBasepoint_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(a_arg, 33)));
41                 GC.KeepAlive(a_arg);
42                 if (ret >= 0 && ret <= 4096) { return null; }
43                 org.ldk.structs.HtlcBasepoint ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.HtlcBasepoint(null, ret); }
44                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
45                 return ret_hu_conv;
46         }
47
48         /**
49          * Checks if two HtlcBasepoints contain equal inner contents.
50          * This ignores pointers and is_owned flags and looks at the values in fields.
51          * Two objects with NULL inner values will be considered "equal" here.
52          */
53         public bool eq(org.ldk.structs.HtlcBasepoint b) {
54                 bool ret = bindings.HtlcBasepoint_eq(this.ptr, b == null ? 0 : b.ptr);
55                 GC.KeepAlive(this);
56                 GC.KeepAlive(b);
57                 if (this != null) { this.ptrs_to.AddLast(b); };
58                 return ret;
59         }
60
61         public override bool Equals(object o) {
62                 if (!(o is HtlcBasepoint)) return false;
63                 return this.eq((HtlcBasepoint)o);
64         }
65         internal long clone_ptr() {
66                 long ret = bindings.HtlcBasepoint_clone_ptr(this.ptr);
67                 GC.KeepAlive(this);
68                 return ret;
69         }
70
71         /**
72          * Creates a copy of the HtlcBasepoint
73          */
74         public HtlcBasepoint clone() {
75                 long ret = bindings.HtlcBasepoint_clone(this.ptr);
76                 GC.KeepAlive(this);
77                 if (ret >= 0 && ret <= 4096) { return null; }
78                 org.ldk.structs.HtlcBasepoint ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.HtlcBasepoint(null, ret); }
79                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
80                 return ret_hu_conv;
81         }
82
83         /**
84          * Generates a non-cryptographic 64-bit hash of the HtlcBasepoint.
85          */
86         public long hash() {
87                 long ret = bindings.HtlcBasepoint_hash(this.ptr);
88                 GC.KeepAlive(this);
89                 return ret;
90         }
91
92         public override int GetHashCode() {
93                 return (int)this.hash();
94         }
95         /**
96          * Get inner Public Key
97          */
98         public byte[] to_public_key() {
99                 long ret = bindings.HtlcBasepoint_to_public_key(this.ptr);
100                 GC.KeepAlive(this);
101                 if (ret >= 0 && ret <= 4096) { return null; }
102                 byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
103                 return ret_conv;
104         }
105
106         /**
107          * Serialize the HtlcBasepoint object into a byte array which can be read by HtlcBasepoint_read
108          */
109         public byte[] write() {
110                 long ret = bindings.HtlcBasepoint_write(this.ptr);
111                 GC.KeepAlive(this);
112                 if (ret >= 0 && ret <= 4096) { return null; }
113                 byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
114                 return ret_conv;
115         }
116
117         /**
118          * Read a HtlcBasepoint from a byte array, created by HtlcBasepoint_write
119          */
120         public static Result_HtlcBasepointDecodeErrorZ read(byte[] ser) {
121                 long ret = bindings.HtlcBasepoint_read(InternalUtils.encodeUint8Array(ser));
122                 GC.KeepAlive(ser);
123                 if (ret >= 0 && ret <= 4096) { return null; }
124                 Result_HtlcBasepointDecodeErrorZ ret_hu_conv = Result_HtlcBasepointDecodeErrorZ.constr_from_ptr(ret);
125                 return ret_hu_conv;
126         }
127
128 }
129 } } }