3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
8 export default class DataLossProtect extends CommonBase {
9 constructor(_dummy: object, ptr: number) {
14 protected finalize() {
18 bindings.DataLossProtect_free(this.ptr);
21 public Uint8Array get_your_last_per_commitment_secret() {
22 Uint8Array ret = bindings.DataLossProtect_get_your_last_per_commitment_secret(this.ptr);
26 public void set_your_last_per_commitment_secret(Uint8Array val) {
27 bindings.DataLossProtect_set_your_last_per_commitment_secret(this.ptr, InternalUtils.check_arr_len(val, 32));
30 public Uint8Array get_my_current_per_commitment_point() {
31 Uint8Array ret = bindings.DataLossProtect_get_my_current_per_commitment_point(this.ptr);
35 public void set_my_current_per_commitment_point(Uint8Array val) {
36 bindings.DataLossProtect_set_my_current_per_commitment_point(this.ptr, InternalUtils.check_arr_len(val, 33));
39 public static DataLossProtect constructor_new(Uint8Array your_last_per_commitment_secret_arg, Uint8Array my_current_per_commitment_point_arg) {
40 number ret = bindings.DataLossProtect_new(InternalUtils.check_arr_len(your_last_per_commitment_secret_arg, 32), InternalUtils.check_arr_len(my_current_per_commitment_point_arg, 33));
41 const ret_hu_conv: DataLossProtect = new DataLossProtect(null, ret);
42 ret_hu_conv.ptrs_to.add(ret_hu_conv);
46 public number clone_ptr() {
47 number ret = bindings.DataLossProtect_clone_ptr(this.ptr);
51 public DataLossProtect clone() {
52 number ret = bindings.DataLossProtect_clone(this.ptr);
53 const ret_hu_conv: DataLossProtect = new DataLossProtect(null, ret);
54 ret_hu_conv.ptrs_to.add(this);