@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
|
}
|
|
@@ -858,22 +858,10 @@ exports.isEncryptFileError = function (error) {
|
|
|
858
858
|
}
|
|
859
859
|
};
|
|
860
860
|
|
|
861
|
-
function
|
|
862
|
-
wasm.wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e(arg0, arg1);
|
|
863
|
-
}
|
|
864
|
-
|
|
865
|
-
function wasm_bindgen__convert__closures_____invoke__hdc41283f124c06e5(arg0, arg1, arg2) {
|
|
866
|
-
wasm.wasm_bindgen__convert__closures_____invoke__hdc41283f124c06e5(
|
|
867
|
-
arg0,
|
|
868
|
-
arg1,
|
|
869
|
-
addHeapObject(arg2),
|
|
870
|
-
);
|
|
871
|
-
}
|
|
872
|
-
|
|
873
|
-
function wasm_bindgen__convert__closures_____invoke__hbc1220c6b5cbd1c8(arg0, arg1, arg2) {
|
|
861
|
+
function wasm_bindgen__convert__closures_____invoke__h35a8188fc7e541fe(arg0, arg1, arg2) {
|
|
874
862
|
try {
|
|
875
863
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
876
|
-
wasm.
|
|
864
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h35a8188fc7e541fe(
|
|
877
865
|
retptr,
|
|
878
866
|
arg0,
|
|
879
867
|
arg1,
|
|
@@ -889,6 +877,18 @@ function wasm_bindgen__convert__closures_____invoke__hbc1220c6b5cbd1c8(arg0, arg
|
|
|
889
877
|
}
|
|
890
878
|
}
|
|
891
879
|
|
|
880
|
+
function wasm_bindgen__convert__closures_____invoke__h3f3903322ff045ff(arg0, arg1, arg2) {
|
|
881
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h3f3903322ff045ff(
|
|
882
|
+
arg0,
|
|
883
|
+
arg1,
|
|
884
|
+
addHeapObject(arg2),
|
|
885
|
+
);
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
function wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e(arg0, arg1) {
|
|
889
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e(arg0, arg1);
|
|
890
|
+
}
|
|
891
|
+
|
|
892
892
|
function wasm_bindgen__convert__closures_____invoke__h43dfd80678632d6f(arg0, arg1, arg2, arg3) {
|
|
893
893
|
wasm.wasm_bindgen__convert__closures_____invoke__h43dfd80678632d6f(
|
|
894
894
|
arg0,
|
|
@@ -4138,6 +4138,7 @@ class PureCrypto {
|
|
|
4138
4138
|
/**
|
|
4139
4139
|
* Given a decrypted private RSA key PKCS8 DER this
|
|
4140
4140
|
* returns the corresponding public RSA key in DER format.
|
|
4141
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
4141
4142
|
* @param {Uint8Array} private_key
|
|
4142
4143
|
* @returns {Uint8Array}
|
|
4143
4144
|
*/
|
|
@@ -4163,6 +4164,7 @@ class PureCrypto {
|
|
|
4163
4164
|
}
|
|
4164
4165
|
/**
|
|
4165
4166
|
* Generates a new RSA key pair and returns the private key
|
|
4167
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
4166
4168
|
* @returns {Uint8Array}
|
|
4167
4169
|
*/
|
|
4168
4170
|
static rsa_generate_keypair() {
|
|
@@ -4185,6 +4187,7 @@ class PureCrypto {
|
|
|
4185
4187
|
}
|
|
4186
4188
|
/**
|
|
4187
4189
|
* Decrypts data using RSAES-OAEP with SHA-1
|
|
4190
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
4188
4191
|
* @param {Uint8Array} encrypted_data
|
|
4189
4192
|
* @param {Uint8Array} private_key
|
|
4190
4193
|
* @returns {Uint8Array}
|
|
@@ -4213,6 +4216,7 @@ class PureCrypto {
|
|
|
4213
4216
|
}
|
|
4214
4217
|
/**
|
|
4215
4218
|
* Encrypts data using RSAES-OAEP with SHA-1
|
|
4219
|
+
* HAZMAT WARNING: Do not use outside of implementing cryptofunctionservice
|
|
4216
4220
|
* @param {Uint8Array} plain_data
|
|
4217
4221
|
* @param {Uint8Array} public_key
|
|
4218
4222
|
* @returns {Uint8Array}
|
|
@@ -4666,7 +4670,7 @@ exports.__wbg_call_e762c39fa8ea36bf = function () {
|
|
|
4666
4670
|
}, arguments);
|
|
4667
4671
|
};
|
|
4668
4672
|
|
|
4669
|
-
exports.
|
|
4673
|
+
exports.__wbg_cipher_54d9031d60850622 = function (arg0) {
|
|
4670
4674
|
const ret = getObject(arg0).cipher;
|
|
4671
4675
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4672
4676
|
};
|
|
@@ -4759,7 +4763,7 @@ exports.__wbg_fetch_f8ba0e29a9d6de0d = function (arg0, arg1) {
|
|
|
4759
4763
|
return addHeapObject(ret);
|
|
4760
4764
|
};
|
|
4761
4765
|
|
|
4762
|
-
exports.
|
|
4766
|
+
exports.__wbg_folder_2d6703d18bcf6b5f = function (arg0) {
|
|
4763
4767
|
const ret = getObject(arg0).folder;
|
|
4764
4768
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
4765
4769
|
};
|
|
@@ -4775,6 +4779,12 @@ exports.__wbg_getRandomValues_38097e921c2494c3 = function () {
|
|
|
4775
4779
|
}, arguments);
|
|
4776
4780
|
};
|
|
4777
4781
|
|
|
4782
|
+
exports.__wbg_getRandomValues_3c9c0d586e575a16 = function () {
|
|
4783
|
+
return handleError(function (arg0, arg1) {
|
|
4784
|
+
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
4785
|
+
}, arguments);
|
|
4786
|
+
};
|
|
4787
|
+
|
|
4778
4788
|
exports.__wbg_getRandomValues_b8f5dbd5f3995a9e = function () {
|
|
4779
4789
|
return handleError(function (arg0, arg1) {
|
|
4780
4790
|
getObject(arg0).getRandomValues(getObject(arg1));
|
|
@@ -4786,7 +4796,7 @@ exports.__wbg_getTime_14776bfb48a1bff9 = function (arg0) {
|
|
|
4786
4796
|
return ret;
|
|
4787
4797
|
};
|
|
4788
4798
|
|
|
4789
|
-
exports.
|
|
4799
|
+
exports.__wbg_get_7a7b765d166b78eb = function () {
|
|
4790
4800
|
return handleError(function (arg0, arg1, arg2) {
|
|
4791
4801
|
let deferred0_0;
|
|
4792
4802
|
let deferred0_1;
|
|
@@ -4806,7 +4816,12 @@ exports.__wbg_get_7bed016f185add81 = function (arg0, arg1) {
|
|
|
4806
4816
|
return addHeapObject(ret);
|
|
4807
4817
|
};
|
|
4808
4818
|
|
|
4809
|
-
exports.
|
|
4819
|
+
exports.__wbg_get_access_token_16ca6a078a16a9e6 = function (arg0) {
|
|
4820
|
+
const ret = getObject(arg0).get_access_token();
|
|
4821
|
+
return addHeapObject(ret);
|
|
4822
|
+
};
|
|
4823
|
+
|
|
4824
|
+
exports.__wbg_get_d7c03a2a1838f895 = function () {
|
|
4810
4825
|
return handleError(function (arg0, arg1, arg2) {
|
|
4811
4826
|
let deferred0_0;
|
|
4812
4827
|
let deferred0_1;
|
|
@@ -4821,11 +4836,6 @@ exports.__wbg_get_ab3c82eecdf4bc91 = function () {
|
|
|
4821
4836
|
}, arguments);
|
|
4822
4837
|
};
|
|
4823
4838
|
|
|
4824
|
-
exports.__wbg_get_access_token_418fcb38cdc8413d = function (arg0) {
|
|
4825
|
-
const ret = getObject(arg0).get_access_token();
|
|
4826
|
-
return addHeapObject(ret);
|
|
4827
|
-
};
|
|
4828
|
-
|
|
4829
4839
|
exports.__wbg_get_efcb449f58ec27c2 = function () {
|
|
4830
4840
|
return handleError(function (arg0, arg1) {
|
|
4831
4841
|
const ret = Reflect.get(getObject(arg0), getObject(arg1));
|
|
@@ -5017,14 +5027,14 @@ exports.__wbg_length_cdd215e10d9dd507 = function (arg0) {
|
|
|
5017
5027
|
return ret;
|
|
5018
5028
|
};
|
|
5019
5029
|
|
|
5020
|
-
exports.
|
|
5030
|
+
exports.__wbg_list_29517841961e05e3 = function () {
|
|
5021
5031
|
return handleError(function (arg0) {
|
|
5022
5032
|
const ret = getObject(arg0).list();
|
|
5023
5033
|
return addHeapObject(ret);
|
|
5024
5034
|
}, arguments);
|
|
5025
5035
|
};
|
|
5026
5036
|
|
|
5027
|
-
exports.
|
|
5037
|
+
exports.__wbg_list_935b546af2d9b6de = function () {
|
|
5028
5038
|
return handleError(function (arg0) {
|
|
5029
5039
|
const ret = getObject(arg0).list();
|
|
5030
5040
|
return addHeapObject(ret);
|
|
@@ -5268,7 +5278,7 @@ exports.__wbg_randomFillSync_ac0988aba3254290 = function () {
|
|
|
5268
5278
|
}, arguments);
|
|
5269
5279
|
};
|
|
5270
5280
|
|
|
5271
|
-
exports.
|
|
5281
|
+
exports.__wbg_remove_610f7f30b398d771 = function () {
|
|
5272
5282
|
return handleError(function (arg0, arg1, arg2) {
|
|
5273
5283
|
let deferred0_0;
|
|
5274
5284
|
let deferred0_1;
|
|
@@ -5283,7 +5293,7 @@ exports.__wbg_remove_2d6d9bd3eaac392b = function () {
|
|
|
5283
5293
|
}, arguments);
|
|
5284
5294
|
};
|
|
5285
5295
|
|
|
5286
|
-
exports.
|
|
5296
|
+
exports.__wbg_remove_d592b4ab55fa372d = function () {
|
|
5287
5297
|
return handleError(function (arg0, arg1, arg2) {
|
|
5288
5298
|
let deferred0_0;
|
|
5289
5299
|
let deferred0_1;
|
|
@@ -5329,11 +5339,7 @@ exports.__wbg_setTimeout_ca12ead8b48245e2 = function (arg0, arg1) {
|
|
|
5329
5339
|
return addHeapObject(ret);
|
|
5330
5340
|
};
|
|
5331
5341
|
|
|
5332
|
-
exports.
|
|
5333
|
-
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
5334
|
-
};
|
|
5335
|
-
|
|
5336
|
-
exports.__wbg_set_5235cc0f26ed539b = function () {
|
|
5342
|
+
exports.__wbg_set_16779e1c12161eee = function () {
|
|
5337
5343
|
return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5338
5344
|
let deferred0_0;
|
|
5339
5345
|
let deferred0_1;
|
|
@@ -5348,7 +5354,11 @@ exports.__wbg_set_5235cc0f26ed539b = function () {
|
|
|
5348
5354
|
}, arguments);
|
|
5349
5355
|
};
|
|
5350
5356
|
|
|
5351
|
-
exports.
|
|
5357
|
+
exports.__wbg_set_3f1d0b984ed272ed = function (arg0, arg1, arg2) {
|
|
5358
|
+
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
5359
|
+
};
|
|
5360
|
+
|
|
5361
|
+
exports.__wbg_set_6d45f26bc45340a7 = function () {
|
|
5352
5362
|
return handleError(function (arg0, arg1, arg2, arg3) {
|
|
5353
5363
|
let deferred0_0;
|
|
5354
5364
|
let deferred0_1;
|
|
@@ -5551,39 +5561,31 @@ exports.__wbg_warn_8f5b5437666d0885 = function (arg0, arg1, arg2, arg3) {
|
|
|
5551
5561
|
console.warn(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
5552
5562
|
};
|
|
5553
5563
|
|
|
5554
|
-
exports.
|
|
5555
|
-
// Cast intrinsic for `
|
|
5564
|
+
exports.__wbindgen_cast_2241b6af4c4b2941 = function (arg0, arg1) {
|
|
5565
|
+
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
5566
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
|
5567
|
+
return addHeapObject(ret);
|
|
5568
|
+
};
|
|
5569
|
+
|
|
5570
|
+
exports.__wbindgen_cast_4042b341512ce63a = function (arg0, arg1) {
|
|
5571
|
+
// 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`.
|
|
5556
5572
|
const ret = makeMutClosure(
|
|
5557
5573
|
arg0,
|
|
5558
5574
|
arg1,
|
|
5559
|
-
wasm.
|
|
5560
|
-
|
|
5575
|
+
wasm.wasm_bindgen__closure__destroy__hba496874d56e8206,
|
|
5576
|
+
wasm_bindgen__convert__closures_____invoke__h3f3903322ff045ff,
|
|
5561
5577
|
);
|
|
5562
5578
|
return addHeapObject(ret);
|
|
5563
5579
|
};
|
|
5564
5580
|
|
|
5565
|
-
exports.__wbindgen_cast_2241b6af4c4b2941 = function (arg0, arg1) {
|
|
5566
|
-
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
5567
|
-
const ret = getStringFromWasm0(arg0, arg1);
|
|
5568
|
-
return addHeapObject(ret);
|
|
5569
|
-
};
|
|
5570
|
-
|
|
5571
5581
|
exports.__wbindgen_cast_4625c577ab2ec9ee = function (arg0) {
|
|
5572
5582
|
// Cast intrinsic for `U64 -> Externref`.
|
|
5573
5583
|
const ret = BigInt.asUintN(64, arg0);
|
|
5574
5584
|
return addHeapObject(ret);
|
|
5575
5585
|
};
|
|
5576
5586
|
|
|
5577
|
-
exports.
|
|
5578
|
-
|
|
5579
|
-
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
5580
|
-
// Cast intrinsic for `Vector(NamedExternref("CipherRiskResult")) -> Externref`.
|
|
5581
|
-
const ret = v0;
|
|
5582
|
-
return addHeapObject(ret);
|
|
5583
|
-
};
|
|
5584
|
-
|
|
5585
|
-
exports.__wbindgen_cast_6b441f2e42512d6e = function (arg0, arg1) {
|
|
5586
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 545, function: Function { arguments: [], shim_idx: 299, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5587
|
+
exports.__wbindgen_cast_567ce6425eb96825 = function (arg0, arg1) {
|
|
5588
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 551, function: Function { arguments: [], shim_idx: 305, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5587
5589
|
const ret = makeMutClosure(
|
|
5588
5590
|
arg0,
|
|
5589
5591
|
arg1,
|
|
@@ -5593,6 +5595,14 @@ exports.__wbindgen_cast_6b441f2e42512d6e = function (arg0, arg1) {
|
|
|
5593
5595
|
return addHeapObject(ret);
|
|
5594
5596
|
};
|
|
5595
5597
|
|
|
5598
|
+
exports.__wbindgen_cast_5fea77eff9dd275c = function (arg0, arg1) {
|
|
5599
|
+
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
5600
|
+
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
5601
|
+
// Cast intrinsic for `Vector(NamedExternref("CipherRiskResult")) -> Externref`.
|
|
5602
|
+
const ret = v0;
|
|
5603
|
+
return addHeapObject(ret);
|
|
5604
|
+
};
|
|
5605
|
+
|
|
5596
5606
|
exports.__wbindgen_cast_7a6d185652cd8149 = function (arg0, arg1) {
|
|
5597
5607
|
var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
|
|
5598
5608
|
wasm.__wbindgen_free(arg0, arg1 * 4, 4);
|
|
@@ -5601,54 +5611,54 @@ exports.__wbindgen_cast_7a6d185652cd8149 = function (arg0, arg1) {
|
|
|
5601
5611
|
return addHeapObject(ret);
|
|
5602
5612
|
};
|
|
5603
5613
|
|
|
5604
|
-
exports.
|
|
5605
|
-
// Cast intrinsic for `
|
|
5606
|
-
const ret =
|
|
5614
|
+
exports.__wbindgen_cast_8340b5b160d85933 = function (arg0, arg1) {
|
|
5615
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 304, function: Function { arguments: [], shim_idx: 305, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5616
|
+
const ret = makeMutClosure(
|
|
5617
|
+
arg0,
|
|
5618
|
+
arg1,
|
|
5619
|
+
wasm.wasm_bindgen__closure__destroy__h5bf455f3385c4f71,
|
|
5620
|
+
wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e,
|
|
5621
|
+
);
|
|
5607
5622
|
return addHeapObject(ret);
|
|
5608
5623
|
};
|
|
5609
5624
|
|
|
5610
|
-
exports.
|
|
5611
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
5625
|
+
exports.__wbindgen_cast_9654b59eb60e619d = function (arg0, arg1) {
|
|
5626
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 304, function: Function { arguments: [Externref], shim_idx: 44, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
5612
5627
|
const ret = makeMutClosure(
|
|
5613
5628
|
arg0,
|
|
5614
5629
|
arg1,
|
|
5615
5630
|
wasm.wasm_bindgen__closure__destroy__h5bf455f3385c4f71,
|
|
5616
|
-
|
|
5631
|
+
wasm_bindgen__convert__closures_____invoke__h3f3903322ff045ff,
|
|
5617
5632
|
);
|
|
5618
5633
|
return addHeapObject(ret);
|
|
5619
5634
|
};
|
|
5620
5635
|
|
|
5621
|
-
exports.
|
|
5622
|
-
// Cast intrinsic for `
|
|
5623
|
-
const ret =
|
|
5636
|
+
exports.__wbindgen_cast_9ae0607507abb057 = function (arg0) {
|
|
5637
|
+
// Cast intrinsic for `I64 -> Externref`.
|
|
5638
|
+
const ret = arg0;
|
|
5624
5639
|
return addHeapObject(ret);
|
|
5625
5640
|
};
|
|
5626
5641
|
|
|
5627
|
-
exports.
|
|
5628
|
-
// Cast intrinsic for `
|
|
5629
|
-
const ret = arg0;
|
|
5642
|
+
exports.__wbindgen_cast_cb9088102bce6b30 = function (arg0, arg1) {
|
|
5643
|
+
// Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
|
|
5644
|
+
const ret = getArrayU8FromWasm0(arg0, arg1);
|
|
5630
5645
|
return addHeapObject(ret);
|
|
5631
5646
|
};
|
|
5632
5647
|
|
|
5633
|
-
exports.
|
|
5634
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
5648
|
+
exports.__wbindgen_cast_d49c305f67640cb1 = function (arg0, arg1) {
|
|
5649
|
+
// 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`.
|
|
5635
5650
|
const ret = makeMutClosure(
|
|
5636
5651
|
arg0,
|
|
5637
5652
|
arg1,
|
|
5638
|
-
wasm.
|
|
5639
|
-
|
|
5653
|
+
wasm.wasm_bindgen__closure__destroy__hba496874d56e8206,
|
|
5654
|
+
wasm_bindgen__convert__closures_____invoke__h35a8188fc7e541fe,
|
|
5640
5655
|
);
|
|
5641
5656
|
return addHeapObject(ret);
|
|
5642
5657
|
};
|
|
5643
5658
|
|
|
5644
|
-
exports.
|
|
5645
|
-
// Cast intrinsic for `
|
|
5646
|
-
const ret =
|
|
5647
|
-
arg0,
|
|
5648
|
-
arg1,
|
|
5649
|
-
wasm.wasm_bindgen__closure__destroy__h6cdc1ac3a8dcb5bd,
|
|
5650
|
-
wasm_bindgen__convert__closures_____invoke__hbc1220c6b5cbd1c8,
|
|
5651
|
-
);
|
|
5659
|
+
exports.__wbindgen_cast_d6cd19b81560fd6e = function (arg0) {
|
|
5660
|
+
// Cast intrinsic for `F64 -> Externref`.
|
|
5661
|
+
const ret = arg0;
|
|
5652
5662
|
return addHeapObject(ret);
|
|
5653
5663
|
};
|
|
5654
5664
|
|
|
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__h35a8188fc7e541fe: (
|
|
455
455
|
a: number,
|
|
456
456
|
b: number,
|
|
457
|
+
c: number,
|
|
458
|
+
d: number,
|
|
457
459
|
) => void;
|
|
458
|
-
export const
|
|
459
|
-
export const
|
|
460
|
+
export const wasm_bindgen__closure__destroy__hba496874d56e8206: (a: number, b: number) => void;
|
|
461
|
+
export const wasm_bindgen__convert__closures_____invoke__h3f3903322ff045ff: (
|
|
460
462
|
a: number,
|
|
461
463
|
b: number,
|
|
462
464
|
c: number,
|
|
463
465
|
) => void;
|
|
464
466
|
export const wasm_bindgen__closure__destroy__h5bf455f3385c4f71: (a: number, b: number) => void;
|
|
465
|
-
export const
|
|
467
|
+
export const wasm_bindgen__convert__closures_____invoke__h092300064b8afb1e: (
|
|
466
468
|
a: number,
|
|
467
469
|
b: number,
|
|
468
|
-
c: number,
|
|
469
|
-
d: number,
|
|
470
470
|
) => void;
|
|
471
|
-
export const
|
|
471
|
+
export const wasm_bindgen__closure__destroy__hfcb631b72e5e985c: (a: number, b: number) => void;
|
|
472
472
|
export const wasm_bindgen__convert__closures_____invoke__h43dfd80678632d6f: (
|
|
473
473
|
a: number,
|
|
474
474
|
b: number,
|