1 package org.ldk.structs;
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
6 import java.util.Arrays;
8 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
9 public class DataLossProtect extends CommonBase {
10 DataLossProtect(Object _dummy, long ptr) { super(ptr); }
11 @Override @SuppressWarnings("deprecation")
12 protected void finalize() throws Throwable {
14 if (ptr != 0) { bindings.DataLossProtect_free(ptr); }
17 public static DataLossProtect constructor_clone(DataLossProtect orig) {
18 long ret = bindings.DataLossProtect_clone(orig == null ? 0 : orig.ptr & ~1);
19 DataLossProtect ret_hu_conv = new DataLossProtect(null, ret);
20 ret_hu_conv.ptrs_to.add(orig);
24 public byte[] get_your_last_per_commitment_secret() {
25 byte[] ret = bindings.DataLossProtect_get_your_last_per_commitment_secret(this.ptr);
29 public void set_your_last_per_commitment_secret(byte[] val) {
30 bindings.DataLossProtect_set_your_last_per_commitment_secret(this.ptr, val);
33 public byte[] get_my_current_per_commitment_point() {
34 byte[] ret = bindings.DataLossProtect_get_my_current_per_commitment_point(this.ptr);
38 public void set_my_current_per_commitment_point(byte[] val) {
39 bindings.DataLossProtect_set_my_current_per_commitment_point(this.ptr, val);
42 public static DataLossProtect constructor_new(byte[] your_last_per_commitment_secret_arg, byte[] my_current_per_commitment_point_arg) {
43 long ret = bindings.DataLossProtect_new(your_last_per_commitment_secret_arg, my_current_per_commitment_point_arg);
44 DataLossProtect ret_hu_conv = new DataLossProtect(null, ret);