@wireapp/core-crypto 4.2.0 → 4.2.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wireapp/core-crypto",
3
- "version": "4.2.0",
3
+ "version": "4.2.2",
4
4
  "author": "Wire CoreCrypto team <team.corecrypto@wire.com>",
5
5
  "repository": {
6
6
  "type": "git",
Binary file
@@ -232,8 +232,8 @@ export const __wbindgen_export_5: WebAssembly.Table;
232
232
  export const __wbindgen_free: (a: number, b: number, c: number) => void;
233
233
  export const __externref_drop_slice: (a: number, b: number) => void;
234
234
  export const __externref_table_dealloc: (a: number) => void;
235
- export const closure858_externref_shim: (a: number, b: number, c: any) => void;
236
- export const closure2331_externref_shim: (a: number, b: number, c: any) => void;
237
- export const closure2521_externref_shim: (a: number, b: number, c: any) => void;
238
- export const closure2608_externref_shim: (a: number, b: number, c: any, d: any) => void;
235
+ export const closure877_externref_shim: (a: number, b: number, c: any) => void;
236
+ export const closure2567_externref_shim: (a: number, b: number, c: any) => void;
237
+ export const closure2763_externref_shim: (a: number, b: number, c: any) => void;
238
+ export const closure2850_externref_shim: (a: number, b: number, c: any, d: any) => void;
239
239
  export const __wbindgen_start: () => void;
@@ -226,7 +226,7 @@ declare class CoreCryptoContext {
226
226
  /**
227
227
  * Returns [`WasmCryptoResult<u64>`]
228
228
  *
229
- * see [core_crypto::mls::context::CentralContext::conversation_epoch]
229
+ * see [core_crypto::mls::conversation::ConversationGuard::epoch]
230
230
  */
231
231
  conversation_epoch(conversation_id: Uint8Array): Promise<any>;
232
232
  /**
@@ -262,7 +262,7 @@ declare class CoreCryptoContext {
262
262
  /**
263
263
  * Returns: [`WasmCryptoResult<()>`]
264
264
  *
265
- * see [core_crypto::mls::context::CentralContext::mark_conversation_as_child_of]
265
+ * see [core_crypto::mls::conversation::ConversationGuard::mark_as_child_of]
266
266
  */
267
267
  mark_conversation_as_child_of(child_id: Uint8Array, parent_id: Uint8Array): Promise<any>;
268
268
  /**
@@ -286,7 +286,7 @@ declare class CoreCryptoContext {
286
286
  /**
287
287
  * Returns: [`WasmCryptoResult<DecryptedMessage>`]
288
288
  *
289
- * see [core_crypto::mls::context::CentralContext::decrypt_message]
289
+ * see [core_crypto::mls::conversation::conversation_guard::ConversationGuard::decrypt_message]
290
290
  */
291
291
  decrypt_message(conversation_id: Uint8Array, payload: Uint8Array): Promise<any>;
292
292
  /**
@@ -310,19 +310,19 @@ declare class CoreCryptoContext {
310
310
  /**
311
311
  * Returns: [`WasmCryptoResult<Vec<u8>>`]
312
312
  *
313
- * see [core_crypto::mls::context::CentralContext::export_secret_key]
313
+ * see [core_crypto::mls::conversation::ImmutableConversation::export_secret_key]
314
314
  */
315
315
  export_secret_key(conversation_id: Uint8Array, key_length: number): Promise<any>;
316
316
  /**
317
317
  * Returns: [`WasmCryptoResult<Vec<u8>>`]
318
318
  *
319
- * see [core_crypto::mls::context::CentralContext::get_external_sender]
319
+ * see [core_crypto::mls::conversation::ImmutableConversation::get_external_sender]
320
320
  */
321
321
  get_external_sender(id: Uint8Array): Promise<any>;
322
322
  /**
323
323
  * Returns: [`WasmCryptoResult<Box<[js_sys::Uint8Array]>`]
324
324
  *
325
- * see [core_crypto::mls::context::CentralContext::get_client_ids]
325
+ * see [core_crypto::conversation::ImmutableConversation::get_client_ids]
326
326
  */
327
327
  get_client_ids(conversation_id: Uint8Array): Promise<any>;
328
328
  /**
@@ -480,7 +480,7 @@ declare class CoreCryptoContext {
480
480
  /**
481
481
  * Returns: [`WasmCryptoResult<()>`]
482
482
  *
483
- * see [core_crypto::context::CentralContext::e2ei_rotate]
483
+ * See [core_crypto::mls::conversation::ConversationGuard::e2ei_rotate]
484
484
  */
485
485
  e2ei_rotate(conversation_id: Uint8Array): Promise<any>;
486
486
  /**
@@ -506,7 +506,7 @@ declare class CoreCryptoContext {
506
506
  /**
507
507
  * Returns [`WasmCryptoResult<u8>`]
508
508
  *
509
- * see [core_crypto::mls::context::CentralContext::e2ei_conversation_state]
509
+ * see [core_crypto::mls::conversation::ImmutableConversation::e2ei_conversation_state]
510
510
  */
511
511
  e2ei_conversation_state(conversation_id: Uint8Array): Promise<any>;
512
512
  /**
package/src/corecrypto.js CHANGED
@@ -163,9 +163,7 @@ function getStringFromWasm0(ptr, len) {
163
163
  function isLikeNone(x) {
164
164
  return x === undefined || x === null;
165
165
  }
166
- var CLOSURE_DTORS = typeof FinalizationRegistry === "undefined" ? { register: () => {
167
- }, unregister: () => {
168
- } } : new FinalizationRegistry((state) => {
166
+ var CLOSURE_DTORS = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((state) => {
169
167
  wasm.__wbindgen_export_5.get(state.dtor)(state.a, state.b);
170
168
  });
171
169
  function makeMutClosure(arg0, arg1, dtor, f) {
@@ -298,16 +296,16 @@ function takeFromExternrefTable0(idx) {
298
296
  return value;
299
297
  }
300
298
  function __wbg_adapter_60(arg0, arg1, arg2) {
301
- wasm.closure858_externref_shim(arg0, arg1, arg2);
299
+ wasm.closure877_externref_shim(arg0, arg1, arg2);
302
300
  }
303
301
  function __wbg_adapter_63(arg0, arg1, arg2) {
304
- wasm.closure2331_externref_shim(arg0, arg1, arg2);
302
+ wasm.closure2567_externref_shim(arg0, arg1, arg2);
305
303
  }
306
304
  function __wbg_adapter_66(arg0, arg1, arg2) {
307
- wasm.closure2521_externref_shim(arg0, arg1, arg2);
305
+ wasm.closure2763_externref_shim(arg0, arg1, arg2);
308
306
  }
309
307
  function __wbg_adapter_497(arg0, arg1, arg2, arg3) {
310
- wasm.closure2608_externref_shim(arg0, arg1, arg2, arg3);
308
+ wasm.closure2850_externref_shim(arg0, arg1, arg2, arg3);
311
309
  }
312
310
  var Ciphersuite = Object.freeze({
313
311
  MLS_128_DHKEMX25519_AES128GCM_SHA256_Ed25519: 1,
@@ -369,9 +367,7 @@ var WirePolicy = Object.freeze({
369
367
  });
370
368
  var __wbindgen_enum_IdbCursorDirection = ["next", "nextunique", "prev", "prevunique"];
371
369
  var __wbindgen_enum_IdbTransactionMode = ["readonly", "readwrite", "versionchange", "readwriteflush", "cleanup"];
372
- var AcmeChallengeFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
373
- }, unregister: () => {
374
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_acmechallenge_free(ptr >>> 0, 1));
370
+ var AcmeChallengeFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_acmechallenge_free(ptr >>> 0, 1));
375
371
 
376
372
  class AcmeChallenge {
377
373
  static __wrap(ptr) {
@@ -422,9 +418,7 @@ class AcmeChallenge {
422
418
  }
423
419
  }
424
420
  }
425
- var AcmeDirectoryFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
426
- }, unregister: () => {
427
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_acmedirectory_free(ptr >>> 0, 1));
421
+ var AcmeDirectoryFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_acmedirectory_free(ptr >>> 0, 1));
428
422
 
429
423
  class AcmeDirectory {
430
424
  static __wrap(ptr) {
@@ -493,9 +487,7 @@ class AcmeDirectory {
493
487
  }
494
488
  }
495
489
  }
496
- var BufferedDecryptedMessageFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
497
- }, unregister: () => {
498
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_buffereddecryptedmessage_free(ptr >>> 0, 1));
490
+ var BufferedDecryptedMessageFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_buffereddecryptedmessage_free(ptr >>> 0, 1));
499
491
 
500
492
  class BufferedDecryptedMessage {
501
493
  static __wrap(ptr) {
@@ -548,9 +540,7 @@ class BufferedDecryptedMessage {
548
540
  return ret;
549
541
  }
550
542
  }
551
- var BuildMetadataFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
552
- }, unregister: () => {
553
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_buildmetadata_free(ptr >>> 0, 1));
543
+ var BuildMetadataFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_buildmetadata_free(ptr >>> 0, 1));
554
544
 
555
545
  class BuildMetadata {
556
546
  static __wrap(ptr) {
@@ -623,9 +613,7 @@ class BuildMetadata {
623
613
  return getStringFromWasm0(ret[0], ret[1]);
624
614
  }
625
615
  }
626
- var CommitBundleFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
627
- }, unregister: () => {
628
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_commitbundle_free(ptr >>> 0, 1));
616
+ var CommitBundleFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_commitbundle_free(ptr >>> 0, 1));
629
617
 
630
618
  class CommitBundle {
631
619
  static __wrap(ptr) {
@@ -658,9 +646,7 @@ class CommitBundle {
658
646
  return GroupInfoBundle.__wrap(ret);
659
647
  }
660
648
  }
661
- var ConversationConfigurationFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
662
- }, unregister: () => {
663
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_conversationconfiguration_free(ptr >>> 0, 1));
649
+ var ConversationConfigurationFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_conversationconfiguration_free(ptr >>> 0, 1));
664
650
 
665
651
  class ConversationConfiguration {
666
652
  __destroy_into_raw() {
@@ -697,9 +683,7 @@ class ConversationConfiguration {
697
683
  return CustomConfiguration.__wrap(ret);
698
684
  }
699
685
  }
700
- var CoreCryptoFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
701
- }, unregister: () => {
702
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_corecrypto_free(ptr >>> 0, 1));
686
+ var CoreCryptoFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_corecrypto_free(ptr >>> 0, 1));
703
687
 
704
688
  class CoreCrypto {
705
689
  static __wrap(ptr) {
@@ -921,9 +905,7 @@ class CoreCrypto {
921
905
  return ret;
922
906
  }
923
907
  }
924
- var CoreCryptoContextFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
925
- }, unregister: () => {
926
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_corecryptocontext_free(ptr >>> 0, 1));
908
+ var CoreCryptoContextFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_corecryptocontext_free(ptr >>> 0, 1));
927
909
 
928
910
  class CoreCryptoContext {
929
911
  static __wrap(ptr) {
@@ -1372,9 +1354,7 @@ class CoreCryptoContext {
1372
1354
  return ret;
1373
1355
  }
1374
1356
  }
1375
- var CoreCryptoWasmLoggerFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1376
- }, unregister: () => {
1377
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_corecryptowasmlogger_free(ptr >>> 0, 1));
1357
+ var CoreCryptoWasmLoggerFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_corecryptowasmlogger_free(ptr >>> 0, 1));
1378
1358
 
1379
1359
  class CoreCryptoWasmLogger {
1380
1360
  __destroy_into_raw() {
@@ -1394,12 +1374,8 @@ class CoreCryptoWasmLogger {
1394
1374
  return this;
1395
1375
  }
1396
1376
  }
1397
- var CrlRegistrationFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1398
- }, unregister: () => {
1399
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_crlregistration_free(ptr >>> 0, 1));
1400
- var CustomConfigurationFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1401
- }, unregister: () => {
1402
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_customconfiguration_free(ptr >>> 0, 1));
1377
+ var CrlRegistrationFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_crlregistration_free(ptr >>> 0, 1));
1378
+ var CustomConfigurationFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_customconfiguration_free(ptr >>> 0, 1));
1403
1379
 
1404
1380
  class CustomConfiguration {
1405
1381
  static __wrap(ptr) {
@@ -1440,15 +1416,9 @@ class CustomConfiguration {
1440
1416
  wasm.__wbg_set_customconfiguration_wirePolicy(this.__wbg_ptr, isLikeNone(arg0) ? 0 : arg0);
1441
1417
  }
1442
1418
  }
1443
- var DecryptedMessageFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1444
- }, unregister: () => {
1445
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_decryptedmessage_free(ptr >>> 0, 1));
1446
- var E2eiDumpedPkiEnvFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1447
- }, unregister: () => {
1448
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_e2eidumpedpkienv_free(ptr >>> 0, 1));
1449
- var FfiWireE2EIdentityFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1450
- }, unregister: () => {
1451
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_ffiwiree2eidentity_free(ptr >>> 0, 1));
1419
+ var DecryptedMessageFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_decryptedmessage_free(ptr >>> 0, 1));
1420
+ var E2eiDumpedPkiEnvFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_e2eidumpedpkienv_free(ptr >>> 0, 1));
1421
+ var FfiWireE2EIdentityFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_ffiwiree2eidentity_free(ptr >>> 0, 1));
1452
1422
 
1453
1423
  class FfiWireE2EIdentity {
1454
1424
  static __wrap(ptr) {
@@ -1565,9 +1535,7 @@ class FfiWireE2EIdentity {
1565
1535
  return ret;
1566
1536
  }
1567
1537
  }
1568
- var GroupInfoBundleFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1569
- }, unregister: () => {
1570
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_groupinfobundle_free(ptr >>> 0, 1));
1538
+ var GroupInfoBundleFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_groupinfobundle_free(ptr >>> 0, 1));
1571
1539
 
1572
1540
  class GroupInfoBundle {
1573
1541
  static __wrap(ptr) {
@@ -1600,9 +1568,7 @@ class GroupInfoBundle {
1600
1568
  return ret;
1601
1569
  }
1602
1570
  }
1603
- var MlsTransportProviderFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1604
- }, unregister: () => {
1605
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_mlstransportprovider_free(ptr >>> 0, 1));
1571
+ var MlsTransportProviderFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_mlstransportprovider_free(ptr >>> 0, 1));
1606
1572
 
1607
1573
  class MlsTransportProvider {
1608
1574
  __destroy_into_raw() {
@@ -1622,9 +1588,7 @@ class MlsTransportProvider {
1622
1588
  return this;
1623
1589
  }
1624
1590
  }
1625
- var NewAcmeAuthzFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1626
- }, unregister: () => {
1627
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_newacmeauthz_free(ptr >>> 0, 1));
1591
+ var NewAcmeAuthzFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_newacmeauthz_free(ptr >>> 0, 1));
1628
1592
 
1629
1593
  class NewAcmeAuthz {
1630
1594
  static __wrap(ptr) {
@@ -1670,9 +1634,7 @@ class NewAcmeAuthz {
1670
1634
  return AcmeChallenge.__wrap(ret);
1671
1635
  }
1672
1636
  }
1673
- var NewAcmeOrderFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1674
- }, unregister: () => {
1675
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_newacmeorder_free(ptr >>> 0, 1));
1637
+ var NewAcmeOrderFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_newacmeorder_free(ptr >>> 0, 1));
1676
1638
 
1677
1639
  class NewAcmeOrder {
1678
1640
  static __wrap(ptr) {
@@ -1705,9 +1667,7 @@ class NewAcmeOrder {
1705
1667
  return v1;
1706
1668
  }
1707
1669
  }
1708
- var ProposalBundleFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1709
- }, unregister: () => {
1710
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_proposalbundle_free(ptr >>> 0, 1));
1670
+ var ProposalBundleFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_proposalbundle_free(ptr >>> 0, 1));
1711
1671
 
1712
1672
  class ProposalBundle {
1713
1673
  static __wrap(ptr) {
@@ -1740,9 +1700,7 @@ class ProposalBundle {
1740
1700
  return ret;
1741
1701
  }
1742
1702
  }
1743
- var ProteusAutoPrekeyBundleFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1744
- }, unregister: () => {
1745
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_proteusautoprekeybundle_free(ptr >>> 0, 1));
1703
+ var ProteusAutoPrekeyBundleFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_proteusautoprekeybundle_free(ptr >>> 0, 1));
1746
1704
 
1747
1705
  class ProteusAutoPrekeyBundle {
1748
1706
  static __wrap(ptr) {
@@ -1781,9 +1739,7 @@ class ProteusAutoPrekeyBundle {
1781
1739
  wasm.__wbg_set_proteusautoprekeybundle_pkb(this.__wbg_ptr, ptr0, len0);
1782
1740
  }
1783
1741
  }
1784
- var WasmMlsTransportResponseFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1785
- }, unregister: () => {
1786
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_wasmmlstransportresponse_free(ptr >>> 0, 1));
1742
+ var WasmMlsTransportResponseFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_wasmmlstransportresponse_free(ptr >>> 0, 1));
1787
1743
 
1788
1744
  class WasmMlsTransportResponse {
1789
1745
  __destroy_into_raw() {
@@ -1818,9 +1774,7 @@ class WasmMlsTransportResponse {
1818
1774
  return v1;
1819
1775
  }
1820
1776
  }
1821
- var WelcomeBundleFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1822
- }, unregister: () => {
1823
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_welcomebundle_free(ptr >>> 0, 1));
1777
+ var WelcomeBundleFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_welcomebundle_free(ptr >>> 0, 1));
1824
1778
 
1825
1779
  class WelcomeBundle {
1826
1780
  __destroy_into_raw() {
@@ -1842,9 +1796,7 @@ class WelcomeBundle {
1842
1796
  return ret;
1843
1797
  }
1844
1798
  }
1845
- var WireIdentityFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1846
- }, unregister: () => {
1847
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_wireidentity_free(ptr >>> 0, 1));
1799
+ var WireIdentityFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_wireidentity_free(ptr >>> 0, 1));
1848
1800
 
1849
1801
  class WireIdentity {
1850
1802
  static __wrap(ptr) {
@@ -1901,9 +1853,7 @@ class WireIdentity {
1901
1853
  return ret === 0 ? undefined : X509Identity.__wrap(ret);
1902
1854
  }
1903
1855
  }
1904
- var X509IdentityFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
1905
- }, unregister: () => {
1906
- } } : new FinalizationRegistry((ptr) => wasm.__wbg_x509identity_free(ptr >>> 0, 1));
1856
+ var X509IdentityFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry((ptr) => wasm.__wbg_x509identity_free(ptr >>> 0, 1));
1907
1857
 
1908
1858
  class X509Identity {
1909
1859
  static __wrap(ptr) {
@@ -2153,7 +2103,7 @@ function __wbg_get_imports() {
2153
2103
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
2154
2104
  }, arguments);
2155
2105
  };
2156
- imports.wbg.__wbg_execute_4e6f34ac58ff0f78 = function() {
2106
+ imports.wbg.__wbg_execute_9d8a19c77d95fa76 = function() {
2157
2107
  return handleError(function(arg0, arg1) {
2158
2108
  const ret = arg0.execute(CoreCryptoContext.__wrap(arg1));
2159
2109
  return ret;
@@ -2725,16 +2675,16 @@ function __wbg_get_imports() {
2725
2675
  const ret = false;
2726
2676
  return ret;
2727
2677
  };
2728
- imports.wbg.__wbindgen_closure_wrapper13504 = function(arg0, arg1, arg2) {
2729
- const ret = makeMutClosure(arg0, arg1, 2332, __wbg_adapter_63);
2678
+ imports.wbg.__wbindgen_closure_wrapper13789 = function(arg0, arg1, arg2) {
2679
+ const ret = makeMutClosure(arg0, arg1, 2568, __wbg_adapter_63);
2730
2680
  return ret;
2731
2681
  };
2732
- imports.wbg.__wbindgen_closure_wrapper14529 = function(arg0, arg1, arg2) {
2733
- const ret = makeMutClosure(arg0, arg1, 2522, __wbg_adapter_66);
2682
+ imports.wbg.__wbindgen_closure_wrapper14823 = function(arg0, arg1, arg2) {
2683
+ const ret = makeMutClosure(arg0, arg1, 2764, __wbg_adapter_66);
2734
2684
  return ret;
2735
2685
  };
2736
- imports.wbg.__wbindgen_closure_wrapper3607 = function(arg0, arg1, arg2) {
2737
- const ret = makeMutClosure(arg0, arg1, 859, __wbg_adapter_60);
2686
+ imports.wbg.__wbindgen_closure_wrapper3626 = function(arg0, arg1, arg2) {
2687
+ const ret = makeMutClosure(arg0, arg1, 878, __wbg_adapter_60);
2738
2688
  return ret;
2739
2689
  };
2740
2690
  imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
@@ -2831,8 +2781,7 @@ function __wbg_get_imports() {
2831
2781
  };
2832
2782
  return imports;
2833
2783
  }
2834
- function __wbg_init_memory(imports, memory) {
2835
- }
2784
+ function __wbg_init_memory(imports, memory) {}
2836
2785
  function __wbg_finalize_init(instance, module) {
2837
2786
  wasm = instance.exports;
2838
2787
  __wbg_init.__wbindgen_wasm_module = module;