@bitwarden/commercial-sdk-internal 0.2.0-main.403 → 0.2.0-main.405
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bitwarden_wasm_internal.d.ts +4 -0
- package/bitwarden_wasm_internal_bg.js +87 -77
- package/bitwarden_wasm_internal_bg.wasm +0 -0
- package/bitwarden_wasm_internal_bg.wasm.d.ts +6 -6
- package/bitwarden_wasm_internal_bg.wasm.js +1 -1
- package/node/bitwarden_wasm_internal.d.ts +4 -0
- package/node/bitwarden_wasm_internal.js +87 -77
- package/node/bitwarden_wasm_internal_bg.wasm +0 -0
- package/node/bitwarden_wasm_internal_bg.wasm.d.ts +7 -7
- package/package.json +1 -1
|
@@ -2453,18 +2453,22 @@ export class PureCrypto {
|
|
|
2453
2453
|
/**
|
|
2454
2454
|
* Given a decrypted private RSA key PKCS8 DER this
|
|
2455
2455
|
* returns the corresponding public RSA key in DER format.
|
|
2456
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
2456
2457
|
*/
|
|
2457
2458
|
static rsa_extract_public_key(private_key: Uint8Array): Uint8Array;
|
|
2458
2459
|
/**
|
|
2459
2460
|
* Generates a new RSA key pair and returns the private key
|
|
2461
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
2460
2462
|
*/
|
|
2461
2463
|
static rsa_generate_keypair(): Uint8Array;
|
|
2462
2464
|
/**
|
|
2463
2465
|
* Decrypts data using RSAES-OAEP with SHA-1
|
|
2466
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
2464
2467
|
*/
|
|
2465
2468
|
static rsa_decrypt_data(encrypted_data: Uint8Array, private_key: Uint8Array): Uint8Array;
|
|
2466
2469
|
/**
|
|
2467
2470
|
* Encrypts data using RSAES-OAEP with SHA-1
|
|
2471
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
2468
2472
|
*/
|
|
2469
2473
|
static rsa_encrypt_data(plain_data: Uint8Array, public_key: Uint8Array): Uint8Array;
|
|
2470
2474
|
}
|
|
@@ -868,10 +868,22 @@ export function isEncryptFileError(error) {
|
|
|
868
868
|
}
|
|
869
869
|
}
|
|
870
870
|
|
|
871
|
-
function
|
|
871
|
+
function wasm_bindgen__convert__closures_____invoke__h3f3903322ff045ff(arg0, arg1, arg2) {
|
|
872
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h3f3903322ff045ff(
|
|
873
|
+
arg0,
|
|
874
|
+
arg1,
|
|
875
|
+
addHeapObject(arg2),
|
|
876
|
+
);
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
function wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e(arg0, arg1) {
|
|
880
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e(arg0, arg1);
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
function wasm_bindgen__convert__closures_____invoke__h35a8188fc7e541fe(arg0, arg1, arg2) {
|
|
872
884
|
try {
|
|
873
885
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
874
|
-
wasm.
|
|
886
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h35a8188fc7e541fe(
|
|
875
887
|
retptr,
|
|
876
888
|
arg0,
|
|
877
889
|
arg1,
|
|
@@ -887,18 +899,6 @@ function wasm_bindgen__convert__closures_____invoke__hbc1220c6b5cbd1c8(arg0, arg
|
|
|
887
899
|
}
|
|
888
900
|
}
|
|
889
901
|
|
|
890
|
-
function wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e(arg0, arg1) {
|
|
891
|
-
wasm.wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e(arg0, arg1);
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
function wasm_bindgen__convert__closures_____invoke__hdc41283f124c06e5(arg0, arg1, arg2) {
|
|
895
|
-
wasm.wasm_bindgen__convert__closures_____invoke__hdc41283f124c06e5(
|
|
896
|
-
arg0,
|
|
897
|
-
arg1,
|
|
898
|
-
addHeapObject(arg2),
|
|
899
|
-
);
|
|
900
|
-
}
|
|
901
|
-
|
|
902
902
|
function wasm_bindgen__convert__closures_____invoke__h43dfd80678632d6f(arg0, arg1, arg2, arg3) {
|
|
903
903
|
wasm.wasm_bindgen__convert__closures_____invoke__h43dfd80678632d6f(
|
|
904
904
|
arg0,
|
|
@@ -4106,6 +4106,7 @@ export class PureCrypto {
|
|
|
4106
4106
|
/**
|
|
4107
4107
|
* Given a decrypted private RSA key PKCS8 DER this
|
|
4108
4108
|
* returns the corresponding public RSA key in DER format.
|
|
4109
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
4109
4110
|
* @param {Uint8Array} private_key
|
|
4110
4111
|
* @returns {Uint8Array}
|
|
4111
4112
|
*/
|
|
@@ -4131,6 +4132,7 @@ export class PureCrypto {
|
|
|
4131
4132
|
}
|
|
4132
4133
|
/**
|
|
4133
4134
|
* Generates a new RSA key pair and returns the private key
|
|
4135
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
4134
4136
|
* @returns {Uint8Array}
|
|
4135
4137
|
*/
|
|
4136
4138
|
static rsa_generate_keypair() {
|
|
@@ -4153,6 +4155,7 @@ export class PureCrypto {
|
|
|
4153
4155
|
}
|
|
4154
4156
|
/**
|
|
4155
4157
|
* Decrypts data using RSAES-OAEP with SHA-1
|
|
4158
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
4156
4159
|
* @param {Uint8Array} encrypted_data
|
|
4157
4160
|
* @param {Uint8Array} private_key
|
|
4158
4161
|
* @returns {Uint8Array}
|
|
@@ -4181,6 +4184,7 @@ export class PureCrypto {
|
|
|
4181
4184
|
}
|
|
4182
4185
|
/**
|
|
4183
4186
|
* Encrypts data using RSAES-OAEP with SHA-1
|
|
4187
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
4184
4188
|
* @param {Uint8Array} plain_data
|
|
4185
4189
|
* @param {Uint8Array} public_key
|
|
4186
4190
|
* @returns {Uint8Array}
|
|
@@ -4624,7 +4628,7 @@ export function __wbg_call_e762c39fa8ea36bf() {
|
|
|
4624
4628
|
}, arguments);
|
|
4625
4629
|
}
|
|
4626
4630
|
|
|
4627
|
-
export function
|
|
4631
|
+
export function __wbg_cipher_54d9031d60850622(arg0) {
|
|
4628
4632
|
const ret = getObject(arg0).cipher;
|
|
4629
4633
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4630
4634
|
}
|
|
@@ -4717,7 +4721,7 @@ export function __wbg_fetch_f8ba0e29a9d6de0d(arg0, arg1) {
|
|
|
4717
4721
|
return addHeapObject(ret);
|
|
4718
4722
|
}
|
|
4719
4723
|
|
|
4720
|
-
export function
|
|
4724
|
+
export function __wbg_folder_2d6703d18bcf6b5f(arg0) {
|
|
4721
4725
|
const ret = getObject(arg0).folder;
|
|
4722
4726
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4723
4727
|
}
|
|
@@ -4733,6 +4737,12 @@ export function __wbg_getRandomValues_38097e921c2494c3() {
|
|
|
4733
4737
|
}, arguments);
|
|
4734
4738
|
}
|
|
4735
4739
|
|
|
4740
|
+
export function __wbg_getRandomValues_3c9c0d586e575a16() {
|
|
4741
|
+
return handleError(function (arg0, arg1) {
|
|
4742
|
+
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
4743
|
+
}, arguments);
|
|
4744
|
+
}
|
|
4745
|
+
|
|
4736
4746
|
export function __wbg_getRandomValues_b8f5dbd5f3995a9e() {
|
|
4737
4747
|
return handleError(function (arg0, arg1) {
|
|
4738
4748
|
getObject(arg0).getRandomValues(getObject(arg1));
|
|
@@ -4744,7 +4754,7 @@ export function __wbg_getTime_14776bfb48a1bff9(arg0) {
|
|
|
4744
4754
|
return ret;
|
|
4745
4755
|
}
|
|
4746
4756
|
|
|
4747
|
-
export function
|
|
4757
|
+
export function __wbg_get_7a7b765d166b78eb() {
|
|
4748
4758
|
return handleError(function (arg0, arg1, arg2) {
|
|
4749
4759
|
let deferred0_0;
|
|
4750
4760
|
let deferred0_1;
|
|
@@ -4764,7 +4774,12 @@ export function __wbg_get_7bed016f185add81(arg0, arg1) {
|
|
|
4764
4774
|
return addHeapObject(ret);
|
|
4765
4775
|
}
|
|
4766
4776
|
|
|
4767
|
-
export function
|
|
4777
|
+
export function __wbg_get_access_token_16ca6a078a16a9e6(arg0) {
|
|
4778
|
+
const ret = getObject(arg0).get_access_token();
|
|
4779
|
+
return addHeapObject(ret);
|
|
4780
|
+
}
|
|
4781
|
+
|
|
4782
|
+
export function __wbg_get_d7c03a2a1838f895() {
|
|
4768
4783
|
return handleError(function (arg0, arg1, arg2) {
|
|
4769
4784
|
let deferred0_0;
|
|
4770
4785
|
let deferred0_1;
|
|
@@ -4779,11 +4794,6 @@ export function __wbg_get_ab3c82eecdf4bc91() {
|
|
|
4779
4794
|
}, arguments);
|
|
4780
4795
|
}
|
|
4781
4796
|
|
|
4782
|
-
export function __wbg_get_access_token_418fcb38cdc8413d(arg0) {
|
|
4783
|
-
const ret = getObject(arg0).get_access_token();
|
|
4784
|
-
return addHeapObject(ret);
|
|
4785
|
-
}
|
|
4786
|
-
|
|
4787
4797
|
export function __wbg_get_efcb449f58ec27c2() {
|
|
4788
4798
|
return handleError(function (arg0, arg1) {
|
|
4789
4799
|
const ret = Reflect.get(getObject(arg0), getObject(arg1));
|
|
@@ -4975,14 +4985,14 @@ export function __wbg_length_cdd215e10d9dd507(arg0) {
|
|
|
4975
4985
|
return ret;
|
|
4976
4986
|
}
|
|
4977
4987
|
|
|
4978
|
-
export function
|
|
4988
|
+
export function __wbg_list_29517841961e05e3() {
|
|
4979
4989
|
return handleError(function (arg0) {
|
|
4980
4990
|
const ret = getObject(arg0).list();
|
|
4981
4991
|
return addHeapObject(ret);
|
|
4982
4992
|
}, arguments);
|
|
4983
4993
|
}
|
|
4984
4994
|
|
|
4985
|
-
export function
|
|
4995
|
+
export function __wbg_list_935b546af2d9b6de() {
|
|
4986
4996
|
return handleError(function (arg0) {
|
|
4987
4997
|
const ret = getObject(arg0).list();
|
|
4988
4998
|
return addHeapObject(ret);
|
|
@@ -5226,7 +5236,7 @@ export function __wbg_randomFillSync_ac0988aba3254290() {
|
|
|
5226
5236
|
}, arguments);
|
|
5227
5237
|
}
|
|
5228
5238
|
|
|
5229
|
-
export function
|
|
5239
|
+
export function __wbg_remove_610f7f30b398d771() {
|
|
5230
5240
|
return handleError(function (arg0, arg1, arg2) {
|
|
5231
5241
|
let deferred0_0;
|
|
5232
5242
|
let deferred0_1;
|
|
@@ -5241,7 +5251,7 @@ export function __wbg_remove_2d6d9bd3eaac392b() {
|
|
|
5241
5251
|
}, arguments);
|
|
5242
5252
|
}
|
|
5243
5253
|
|
|
5244
|
-
export function
|
|
5254
|
+
export function __wbg_remove_d592b4ab55fa372d() {
|
|
5245
5255
|
return handleError(function (arg0, arg1, arg2) {
|
|
5246
5256
|
let deferred0_0;
|
|
5247
5257
|
let deferred0_1;
|
|
@@ -5287,11 +5297,7 @@ export function __wbg_setTimeout_ca12ead8b48245e2(arg0, arg1) {
|
|
|
5287
5297
|
return addHeapObject(ret);
|
|
5288
5298
|
}
|
|
5289
5299
|
|
|
5290
|
-
export function
|
|
5291
|
-
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
5292
|
-
}
|
|
5293
|
-
|
|
5294
|
-
export function __wbg_set_5235cc0f26ed539b() {
|
|
5300
|
+
export function __wbg_set_16779e1c12161eee() {
|
|
5295
5301
|
return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5296
5302
|
let deferred0_0;
|
|
5297
5303
|
let deferred0_1;
|
|
@@ -5306,7 +5312,11 @@ export function __wbg_set_5235cc0f26ed539b() {
|
|
|
5306
5312
|
}, arguments);
|
|
5307
5313
|
}
|
|
5308
5314
|
|
|
5309
|
-
export function
|
|
5315
|
+
export function __wbg_set_3f1d0b984ed272ed(arg0, arg1, arg2) {
|
|
5316
|
+
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
5317
|
+
}
|
|
5318
|
+
|
|
5319
|
+
export function __wbg_set_6d45f26bc45340a7() {
|
|
5310
5320
|
return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5311
5321
|
let deferred0_0;
|
|
5312
5322
|
let deferred0_1;
|
|
@@ -5509,39 +5519,31 @@ export function __wbg_warn_8f5b5437666d0885(arg0, arg1, arg2, arg3) {
|
|
|
5509
5519
|
console.warn(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
5510
5520
|
}
|
|
5511
5521
|
|
|
5512
|
-
export function
|
|
5513
|
-
// Cast intrinsic for `
|
|
5522
|
+
export function __wbindgen_cast_2241b6af4c4b2941(arg0, arg1) {
|
|
5523
|
+
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
5524
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
|
5525
|
+
return addHeapObject(ret);
|
|
5526
|
+
}
|
|
5527
|
+
|
|
5528
|
+
export function __wbindgen_cast_4042b341512ce63a(arg0, arg1) {
|
|
5529
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 41, function: Function { arguments: [NamedExternref("IDBVersionChangeEvent")], shim_idx: 44, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5514
5530
|
const ret = makeMutClosure(
|
|
5515
5531
|
arg0,
|
|
5516
5532
|
arg1,
|
|
5517
|
-
wasm.
|
|
5518
|
-
|
|
5533
|
+
wasm.wasm_bindgen__closure__destroy__hba496874d56e8206,
|
|
5534
|
+
wasm_bindgen__convert__closures_____invoke__h3f3903322ff045ff,
|
|
5519
5535
|
);
|
|
5520
5536
|
return addHeapObject(ret);
|
|
5521
5537
|
}
|
|
5522
5538
|
|
|
5523
|
-
export function __wbindgen_cast_2241b6af4c4b2941(arg0, arg1) {
|
|
5524
|
-
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
5525
|
-
const ret = getStringFromWasm0(arg0, arg1);
|
|
5526
|
-
return addHeapObject(ret);
|
|
5527
|
-
}
|
|
5528
|
-
|
|
5529
5539
|
export function __wbindgen_cast_4625c577ab2ec9ee(arg0) {
|
|
5530
5540
|
// Cast intrinsic for `U64 -> Externref`.
|
|
5531
5541
|
const ret = BigInt.asUintN(64, arg0);
|
|
5532
5542
|
return addHeapObject(ret);
|
|
5533
5543
|
}
|
|
5534
5544
|
|
|
5535
|
-
export function
|
|
5536
|
-
|
|
5537
|
-
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
5538
|
-
// Cast intrinsic for `Vector(NamedExternref("CipherRiskResult")) -> Externref`.
|
|
5539
|
-
const ret = v0;
|
|
5540
|
-
return addHeapObject(ret);
|
|
5541
|
-
}
|
|
5542
|
-
|
|
5543
|
-
export function __wbindgen_cast_6b441f2e42512d6e(arg0, arg1) {
|
|
5544
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 545, function: Function { arguments: [], shim_idx: 299, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5545
|
+
export function __wbindgen_cast_567ce6425eb96825(arg0, arg1) {
|
|
5546
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 551, function: Function { arguments: [], shim_idx: 305, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5545
5547
|
const ret = makeMutClosure(
|
|
5546
5548
|
arg0,
|
|
5547
5549
|
arg1,
|
|
@@ -5551,6 +5553,14 @@ export function __wbindgen_cast_6b441f2e42512d6e(arg0, arg1) {
|
|
|
5551
5553
|
return addHeapObject(ret);
|
|
5552
5554
|
}
|
|
5553
5555
|
|
|
5556
|
+
export function __wbindgen_cast_5fea77eff9dd275c(arg0, arg1) {
|
|
5557
|
+
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
5558
|
+
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
5559
|
+
// Cast intrinsic for `Vector(NamedExternref("CipherRiskResult")) -> Externref`.
|
|
5560
|
+
const ret = v0;
|
|
5561
|
+
return addHeapObject(ret);
|
|
5562
|
+
}
|
|
5563
|
+
|
|
5554
5564
|
export function __wbindgen_cast_7a6d185652cd8149(arg0, arg1) {
|
|
5555
5565
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
5556
5566
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
@@ -5559,54 +5569,54 @@ export function __wbindgen_cast_7a6d185652cd8149(arg0, arg1) {
|
|
|
5559
5569
|
return addHeapObject(ret);
|
|
5560
5570
|
}
|
|
5561
5571
|
|
|
5562
|
-
export function
|
|
5563
|
-
// Cast intrinsic for `
|
|
5564
|
-
const ret =
|
|
5572
|
+
export function __wbindgen_cast_8340b5b160d85933(arg0, arg1) {
|
|
5573
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 304, function: Function { arguments: [], shim_idx: 305, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5574
|
+
const ret = makeMutClosure(
|
|
5575
|
+
arg0,
|
|
5576
|
+
arg1,
|
|
5577
|
+
wasm.wasm_bindgen__closure__destroy__h5bf455f3385c4f71,
|
|
5578
|
+
wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e,
|
|
5579
|
+
);
|
|
5565
5580
|
return addHeapObject(ret);
|
|
5566
5581
|
}
|
|
5567
5582
|
|
|
5568
|
-
export function
|
|
5569
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
5583
|
+
export function __wbindgen_cast_9654b59eb60e619d(arg0, arg1) {
|
|
5584
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 304, function: Function { arguments: [Externref], shim_idx: 44, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5570
5585
|
const ret = makeMutClosure(
|
|
5571
5586
|
arg0,
|
|
5572
5587
|
arg1,
|
|
5573
5588
|
wasm.wasm_bindgen__closure__destroy__h5bf455f3385c4f71,
|
|
5574
|
-
|
|
5589
|
+
wasm_bindgen__convert__closures_____invoke__h3f3903322ff045ff,
|
|
5575
5590
|
);
|
|
5576
5591
|
return addHeapObject(ret);
|
|
5577
5592
|
}
|
|
5578
5593
|
|
|
5579
|
-
export function
|
|
5580
|
-
// Cast intrinsic for `
|
|
5581
|
-
const ret =
|
|
5594
|
+
export function __wbindgen_cast_9ae0607507abb057(arg0) {
|
|
5595
|
+
// Cast intrinsic for `I64 -> Externref`.
|
|
5596
|
+
const ret = arg0;
|
|
5582
5597
|
return addHeapObject(ret);
|
|
5583
5598
|
}
|
|
5584
5599
|
|
|
5585
|
-
export function
|
|
5586
|
-
// Cast intrinsic for `
|
|
5587
|
-
const ret = arg0;
|
|
5600
|
+
export function __wbindgen_cast_cb9088102bce6b30(arg0, arg1) {
|
|
5601
|
+
// Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
|
|
5602
|
+
const ret = getArrayU8FromWasm0(arg0, arg1);
|
|
5588
5603
|
return addHeapObject(ret);
|
|
5589
5604
|
}
|
|
5590
5605
|
|
|
5591
|
-
export function
|
|
5592
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
5606
|
+
export function __wbindgen_cast_d49c305f67640cb1(arg0, arg1) {
|
|
5607
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 41, function: Function { arguments: [NamedExternref("Event")], shim_idx: 42, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
5593
5608
|
const ret = makeMutClosure(
|
|
5594
5609
|
arg0,
|
|
5595
5610
|
arg1,
|
|
5596
|
-
wasm.
|
|
5597
|
-
|
|
5611
|
+
wasm.wasm_bindgen__closure__destroy__hba496874d56e8206,
|
|
5612
|
+
wasm_bindgen__convert__closures_____invoke__h35a8188fc7e541fe,
|
|
5598
5613
|
);
|
|
5599
5614
|
return addHeapObject(ret);
|
|
5600
5615
|
}
|
|
5601
5616
|
|
|
5602
|
-
export function
|
|
5603
|
-
// Cast intrinsic for `
|
|
5604
|
-
const ret =
|
|
5605
|
-
arg0,
|
|
5606
|
-
arg1,
|
|
5607
|
-
wasm.wasm_bindgen__closure__destroy__h6cdc1ac3a8dcb5bd,
|
|
5608
|
-
wasm_bindgen__convert__closures_____invoke__hbc1220c6b5cbd1c8,
|
|
5609
|
-
);
|
|
5617
|
+
export function __wbindgen_cast_d6cd19b81560fd6e(arg0) {
|
|
5618
|
+
// Cast intrinsic for `F64 -> Externref`.
|
|
5619
|
+
const ret = arg0;
|
|
5610
5620
|
return addHeapObject(ret);
|
|
5611
5621
|
}
|
|
5612
5622
|
|
|
Binary file
|
|
@@ -451,24 +451,24 @@ export const __wbg_totpclient_free: (a: number, b: number) => void;
|
|
|
451
451
|
export const __wbg_get_outgoingmessage_destination: (a: number) => number;
|
|
452
452
|
export const __wbg_set_outgoingmessage_destination: (a: number, b: number) => void;
|
|
453
453
|
export const __wbg_cryptoclient_free: (a: number, b: number) => void;
|
|
454
|
-
export const
|
|
454
|
+
export const wasm_bindgen__convert__closures_____invoke__h3f3903322ff045ff: (
|
|
455
455
|
a: number,
|
|
456
456
|
b: number,
|
|
457
457
|
c: number,
|
|
458
|
-
d: number,
|
|
459
458
|
) => void;
|
|
460
|
-
export const
|
|
459
|
+
export const wasm_bindgen__closure__destroy__h5bf455f3385c4f71: (a: number, b: number) => void;
|
|
461
460
|
export const wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e: (
|
|
462
461
|
a: number,
|
|
463
462
|
b: number,
|
|
464
463
|
) => void;
|
|
465
|
-
export const
|
|
466
|
-
export const
|
|
464
|
+
export const wasm_bindgen__closure__destroy__hfcb631b72e5e985c: (a: number, b: number) => void;
|
|
465
|
+
export const wasm_bindgen__convert__closures_____invoke__h35a8188fc7e541fe: (
|
|
467
466
|
a: number,
|
|
468
467
|
b: number,
|
|
469
468
|
c: number,
|
|
469
|
+
d: number,
|
|
470
470
|
) => void;
|
|
471
|
-
export const
|
|
471
|
+
export const wasm_bindgen__closure__destroy__hba496874d56e8206: (a: number, b: number) => void;
|
|
472
472
|
export const wasm_bindgen__convert__closures_____invoke__h43dfd80678632d6f: (
|
|
473
473
|
a: number,
|
|
474
474
|
b: number,
|