@zksdk/core 0.1.11 → 0.1.12
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/dist/cjs/TfheClient.d.ts +12 -1
- package/dist/cjs/TfheClient.d.ts.map +1 -1
- package/dist/cjs/TfheClient.js +66 -26
- package/dist/cjs/TfheClient.js.map +1 -1
- package/dist/esm/TfheClient.d.ts +12 -1
- package/dist/esm/TfheClient.d.ts.map +1 -1
- package/dist/esm/TfheClient.js +66 -26
- package/dist/esm/TfheClient.js.map +1 -1
- package/package.json +1 -1
- package/tfhe-wasm/tfhe.d.ts +263 -2517
- package/tfhe-wasm/tfhe.js +2287 -15284
- package/tfhe-wasm/tfhe_bg.wasm +0 -0
package/tfhe-wasm/tfhe.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
export function shortint_pke_params_name(param: ShortintCompactPublicKeyEncryptionParametersName): string;
|
|
4
|
+
export function shortint_params_name(param?: ShortintParametersName | null): string;
|
|
3
5
|
export function init_panic_hook(): void;
|
|
4
6
|
export function set_server_key(server_key: TfheServerKey): void;
|
|
5
|
-
export function shortint_params_name(param?: ShortintParametersName | null): string;
|
|
6
|
-
export function shortint_pke_params_name(param: ShortintCompactPublicKeyEncryptionParametersName): string;
|
|
7
7
|
export enum BooleanEncryptionKeyChoice {
|
|
8
8
|
Big = 0,
|
|
9
9
|
Small = 1,
|
|
@@ -625,10 +625,6 @@ export enum ShortintParametersName {
|
|
|
625
625
|
V1_5_PARAM_MESSAGE_3_CARRY_3_COMPACT_PK_PBS_KS_GAUSSIAN_2M128 = 496,
|
|
626
626
|
V1_5_PARAM_MESSAGE_4_CARRY_4_COMPACT_PK_PBS_KS_GAUSSIAN_2M128 = 497,
|
|
627
627
|
}
|
|
628
|
-
export enum ZkComputeLoad {
|
|
629
|
-
Proof = 0,
|
|
630
|
-
Verify = 1,
|
|
631
|
-
}
|
|
632
628
|
export class Boolean {
|
|
633
629
|
private constructor();
|
|
634
630
|
free(): void;
|
|
@@ -717,7 +713,6 @@ export class CompactCiphertextListBuilder {
|
|
|
717
713
|
push_u2048(value: any): void;
|
|
718
714
|
build_packed(): CompactCiphertextList;
|
|
719
715
|
push_boolean(value: boolean): void;
|
|
720
|
-
build_with_proof_packed(crs: CompactPkeCrs, metadata: Uint8Array, compute_load: ZkComputeLoad): ProvenCompactCiphertextList;
|
|
721
716
|
build(): CompactCiphertextList;
|
|
722
717
|
push_i2(value: number): void;
|
|
723
718
|
push_i4(value: number): void;
|
|
@@ -731,70 +726,20 @@ export class CompactCiphertextListBuilder {
|
|
|
731
726
|
push_i12(value: number): void;
|
|
732
727
|
push_i14(value: number): void;
|
|
733
728
|
push_i16(value: number): void;
|
|
734
|
-
push_i24(value: number): void;
|
|
735
729
|
push_i32(value: number): void;
|
|
736
|
-
push_i40(value: bigint): void;
|
|
737
|
-
push_i48(value: bigint): void;
|
|
738
|
-
push_i56(value: bigint): void;
|
|
739
730
|
push_i64(value: bigint): void;
|
|
740
|
-
push_i72(value: any): void;
|
|
741
|
-
push_i80(value: any): void;
|
|
742
|
-
push_i88(value: any): void;
|
|
743
|
-
push_i96(value: any): void;
|
|
744
731
|
push_u10(value: number): void;
|
|
745
732
|
push_u12(value: number): void;
|
|
746
733
|
push_u14(value: number): void;
|
|
747
734
|
push_u16(value: number): void;
|
|
748
|
-
push_u24(value: number): void;
|
|
749
735
|
push_u32(value: number): void;
|
|
750
|
-
push_u40(value: bigint): void;
|
|
751
|
-
push_u48(value: bigint): void;
|
|
752
|
-
push_u56(value: bigint): void;
|
|
753
736
|
push_u64(value: bigint): void;
|
|
754
|
-
push_u72(value: any): void;
|
|
755
|
-
push_u80(value: any): void;
|
|
756
|
-
push_u88(value: any): void;
|
|
757
|
-
push_u96(value: any): void;
|
|
758
|
-
push_i104(value: any): void;
|
|
759
|
-
push_i112(value: any): void;
|
|
760
|
-
push_i120(value: any): void;
|
|
761
737
|
push_i128(value: any): void;
|
|
762
|
-
push_i136(value: any): void;
|
|
763
|
-
push_i144(value: any): void;
|
|
764
|
-
push_i152(value: any): void;
|
|
765
738
|
push_i160(value: any): void;
|
|
766
|
-
push_i168(value: any): void;
|
|
767
|
-
push_i176(value: any): void;
|
|
768
|
-
push_i184(value: any): void;
|
|
769
|
-
push_i192(value: any): void;
|
|
770
|
-
push_i200(value: any): void;
|
|
771
|
-
push_i208(value: any): void;
|
|
772
|
-
push_i216(value: any): void;
|
|
773
|
-
push_i224(value: any): void;
|
|
774
|
-
push_i232(value: any): void;
|
|
775
|
-
push_i240(value: any): void;
|
|
776
|
-
push_i248(value: any): void;
|
|
777
739
|
push_i256(value: any): void;
|
|
778
740
|
push_i512(value: any): void;
|
|
779
|
-
push_u104(value: any): void;
|
|
780
|
-
push_u112(value: any): void;
|
|
781
|
-
push_u120(value: any): void;
|
|
782
741
|
push_u128(value: any): void;
|
|
783
|
-
push_u136(value: any): void;
|
|
784
|
-
push_u144(value: any): void;
|
|
785
|
-
push_u152(value: any): void;
|
|
786
742
|
push_u160(value: any): void;
|
|
787
|
-
push_u168(value: any): void;
|
|
788
|
-
push_u176(value: any): void;
|
|
789
|
-
push_u184(value: any): void;
|
|
790
|
-
push_u192(value: any): void;
|
|
791
|
-
push_u200(value: any): void;
|
|
792
|
-
push_u208(value: any): void;
|
|
793
|
-
push_u216(value: any): void;
|
|
794
|
-
push_u224(value: any): void;
|
|
795
|
-
push_u232(value: any): void;
|
|
796
|
-
push_u240(value: any): void;
|
|
797
|
-
push_u248(value: any): void;
|
|
798
743
|
push_u256(value: any): void;
|
|
799
744
|
push_u512(value: any): void;
|
|
800
745
|
}
|
|
@@ -802,64 +747,21 @@ export class CompactCiphertextListExpander {
|
|
|
802
747
|
private constructor();
|
|
803
748
|
free(): void;
|
|
804
749
|
[Symbol.dispose](): void;
|
|
805
|
-
get_int104(index: number): FheInt104;
|
|
806
|
-
get_int112(index: number): FheInt112;
|
|
807
|
-
get_int120(index: number): FheInt120;
|
|
808
750
|
get_int128(index: number): FheInt128;
|
|
809
|
-
get_int136(index: number): FheInt136;
|
|
810
|
-
get_int144(index: number): FheInt144;
|
|
811
|
-
get_int152(index: number): FheInt152;
|
|
812
751
|
get_int160(index: number): FheInt160;
|
|
813
|
-
get_int168(index: number): FheInt168;
|
|
814
|
-
get_int176(index: number): FheInt176;
|
|
815
|
-
get_int184(index: number): FheInt184;
|
|
816
|
-
get_int192(index: number): FheInt192;
|
|
817
|
-
get_int200(index: number): FheInt200;
|
|
818
|
-
get_int208(index: number): FheInt208;
|
|
819
|
-
get_int216(index: number): FheInt216;
|
|
820
|
-
get_int224(index: number): FheInt224;
|
|
821
|
-
get_int232(index: number): FheInt232;
|
|
822
|
-
get_int240(index: number): FheInt240;
|
|
823
|
-
get_int248(index: number): FheInt248;
|
|
824
752
|
get_int256(index: number): FheInt256;
|
|
825
753
|
get_int512(index: number): FheInt512;
|
|
826
754
|
get_uint10(index: number): FheUint10;
|
|
827
755
|
get_uint12(index: number): FheUint12;
|
|
828
756
|
get_uint14(index: number): FheUint14;
|
|
829
757
|
get_uint16(index: number): FheUint16;
|
|
830
|
-
get_uint24(index: number): FheUint24;
|
|
831
758
|
get_uint32(index: number): FheUint32;
|
|
832
|
-
get_uint40(index: number): FheUint40;
|
|
833
|
-
get_uint48(index: number): FheUint48;
|
|
834
|
-
get_uint56(index: number): FheUint56;
|
|
835
759
|
get_uint64(index: number): FheUint64;
|
|
836
|
-
get_uint72(index: number): FheUint72;
|
|
837
|
-
get_uint80(index: number): FheUint80;
|
|
838
|
-
get_uint88(index: number): FheUint88;
|
|
839
|
-
get_uint96(index: number): FheUint96;
|
|
840
760
|
get_int1024(index: number): FheInt1024;
|
|
841
761
|
get_int2048(index: number): FheInt2048;
|
|
842
762
|
get_kind_of(index: number): FheTypes | undefined;
|
|
843
|
-
get_uint104(index: number): FheUint104;
|
|
844
|
-
get_uint112(index: number): FheUint112;
|
|
845
|
-
get_uint120(index: number): FheUint120;
|
|
846
763
|
get_uint128(index: number): FheUint128;
|
|
847
|
-
get_uint136(index: number): FheUint136;
|
|
848
|
-
get_uint144(index: number): FheUint144;
|
|
849
|
-
get_uint152(index: number): FheUint152;
|
|
850
764
|
get_uint160(index: number): FheUint160;
|
|
851
|
-
get_uint168(index: number): FheUint168;
|
|
852
|
-
get_uint176(index: number): FheUint176;
|
|
853
|
-
get_uint184(index: number): FheUint184;
|
|
854
|
-
get_uint192(index: number): FheUint192;
|
|
855
|
-
get_uint200(index: number): FheUint200;
|
|
856
|
-
get_uint208(index: number): FheUint208;
|
|
857
|
-
get_uint216(index: number): FheUint216;
|
|
858
|
-
get_uint224(index: number): FheUint224;
|
|
859
|
-
get_uint232(index: number): FheUint232;
|
|
860
|
-
get_uint240(index: number): FheUint240;
|
|
861
|
-
get_uint248(index: number): FheUint248;
|
|
862
|
-
get_uint256(index: number): FheUint256;
|
|
863
765
|
get_uint512(index: number): FheUint512;
|
|
864
766
|
get_uint1024(index: number): FheUint1024;
|
|
865
767
|
get_uint2048(index: number): FheUint2048;
|
|
@@ -874,33 +776,13 @@ export class CompactCiphertextListExpander {
|
|
|
874
776
|
get_int12(index: number): FheInt12;
|
|
875
777
|
get_int14(index: number): FheInt14;
|
|
876
778
|
get_int16(index: number): FheInt16;
|
|
877
|
-
get_int24(index: number): FheInt24;
|
|
878
779
|
get_int32(index: number): FheInt32;
|
|
879
|
-
get_int40(index: number): FheInt40;
|
|
880
|
-
get_int48(index: number): FheInt48;
|
|
881
|
-
get_int56(index: number): FheInt56;
|
|
882
780
|
get_int64(index: number): FheInt64;
|
|
883
|
-
get_int72(index: number): FheInt72;
|
|
884
|
-
get_int80(index: number): FheInt80;
|
|
885
|
-
get_int88(index: number): FheInt88;
|
|
886
|
-
get_int96(index: number): FheInt96;
|
|
887
781
|
get_uint2(index: number): FheUint2;
|
|
888
782
|
get_uint4(index: number): FheUint4;
|
|
889
783
|
get_uint6(index: number): FheUint6;
|
|
890
784
|
get_uint8(index: number): FheUint8;
|
|
891
785
|
}
|
|
892
|
-
export class CompactPkeCrs {
|
|
893
|
-
private constructor();
|
|
894
|
-
free(): void;
|
|
895
|
-
[Symbol.dispose](): void;
|
|
896
|
-
static deserialize(buffer: Uint8Array): CompactPkeCrs;
|
|
897
|
-
static from_config(config: TfheConfig, max_num_bits: number): CompactPkeCrs;
|
|
898
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
899
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompactPkeCrs;
|
|
900
|
-
static deserialize_from_public_params(buffer: Uint8Array): CompactPkeCrs;
|
|
901
|
-
static safe_deserialize_from_public_params(buffer: Uint8Array, serialized_size_limit: bigint): CompactPkeCrs;
|
|
902
|
-
serialize(compress: boolean): Uint8Array;
|
|
903
|
-
}
|
|
904
786
|
export class CompressedFheBool {
|
|
905
787
|
private constructor();
|
|
906
788
|
free(): void;
|
|
@@ -934,28 +816,6 @@ export class CompressedFheInt1024 {
|
|
|
934
816
|
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt1024;
|
|
935
817
|
serialize(): Uint8Array;
|
|
936
818
|
}
|
|
937
|
-
export class CompressedFheInt104 {
|
|
938
|
-
private constructor();
|
|
939
|
-
free(): void;
|
|
940
|
-
[Symbol.dispose](): void;
|
|
941
|
-
decompress(): FheInt104;
|
|
942
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt104;
|
|
943
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
944
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt104;
|
|
945
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt104;
|
|
946
|
-
serialize(): Uint8Array;
|
|
947
|
-
}
|
|
948
|
-
export class CompressedFheInt112 {
|
|
949
|
-
private constructor();
|
|
950
|
-
free(): void;
|
|
951
|
-
[Symbol.dispose](): void;
|
|
952
|
-
decompress(): FheInt112;
|
|
953
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt112;
|
|
954
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
955
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt112;
|
|
956
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt112;
|
|
957
|
-
serialize(): Uint8Array;
|
|
958
|
-
}
|
|
959
819
|
export class CompressedFheInt12 {
|
|
960
820
|
private constructor();
|
|
961
821
|
free(): void;
|
|
@@ -967,17 +827,6 @@ export class CompressedFheInt12 {
|
|
|
967
827
|
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheInt12;
|
|
968
828
|
serialize(): Uint8Array;
|
|
969
829
|
}
|
|
970
|
-
export class CompressedFheInt120 {
|
|
971
|
-
private constructor();
|
|
972
|
-
free(): void;
|
|
973
|
-
[Symbol.dispose](): void;
|
|
974
|
-
decompress(): FheInt120;
|
|
975
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt120;
|
|
976
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
977
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt120;
|
|
978
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt120;
|
|
979
|
-
serialize(): Uint8Array;
|
|
980
|
-
}
|
|
981
830
|
export class CompressedFheInt128 {
|
|
982
831
|
private constructor();
|
|
983
832
|
free(): void;
|
|
@@ -989,17 +838,6 @@ export class CompressedFheInt128 {
|
|
|
989
838
|
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt128;
|
|
990
839
|
serialize(): Uint8Array;
|
|
991
840
|
}
|
|
992
|
-
export class CompressedFheInt136 {
|
|
993
|
-
private constructor();
|
|
994
|
-
free(): void;
|
|
995
|
-
[Symbol.dispose](): void;
|
|
996
|
-
decompress(): FheInt136;
|
|
997
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt136;
|
|
998
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
999
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt136;
|
|
1000
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt136;
|
|
1001
|
-
serialize(): Uint8Array;
|
|
1002
|
-
}
|
|
1003
841
|
export class CompressedFheInt14 {
|
|
1004
842
|
private constructor();
|
|
1005
843
|
free(): void;
|
|
@@ -1011,28 +849,6 @@ export class CompressedFheInt14 {
|
|
|
1011
849
|
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheInt14;
|
|
1012
850
|
serialize(): Uint8Array;
|
|
1013
851
|
}
|
|
1014
|
-
export class CompressedFheInt144 {
|
|
1015
|
-
private constructor();
|
|
1016
|
-
free(): void;
|
|
1017
|
-
[Symbol.dispose](): void;
|
|
1018
|
-
decompress(): FheInt144;
|
|
1019
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt144;
|
|
1020
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1021
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt144;
|
|
1022
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt144;
|
|
1023
|
-
serialize(): Uint8Array;
|
|
1024
|
-
}
|
|
1025
|
-
export class CompressedFheInt152 {
|
|
1026
|
-
private constructor();
|
|
1027
|
-
free(): void;
|
|
1028
|
-
[Symbol.dispose](): void;
|
|
1029
|
-
decompress(): FheInt152;
|
|
1030
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt152;
|
|
1031
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1032
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt152;
|
|
1033
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt152;
|
|
1034
|
-
serialize(): Uint8Array;
|
|
1035
|
-
}
|
|
1036
852
|
export class CompressedFheInt16 {
|
|
1037
853
|
private constructor();
|
|
1038
854
|
free(): void;
|
|
@@ -1055,50 +871,6 @@ export class CompressedFheInt160 {
|
|
|
1055
871
|
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt160;
|
|
1056
872
|
serialize(): Uint8Array;
|
|
1057
873
|
}
|
|
1058
|
-
export class CompressedFheInt168 {
|
|
1059
|
-
private constructor();
|
|
1060
|
-
free(): void;
|
|
1061
|
-
[Symbol.dispose](): void;
|
|
1062
|
-
decompress(): FheInt168;
|
|
1063
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt168;
|
|
1064
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1065
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt168;
|
|
1066
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt168;
|
|
1067
|
-
serialize(): Uint8Array;
|
|
1068
|
-
}
|
|
1069
|
-
export class CompressedFheInt176 {
|
|
1070
|
-
private constructor();
|
|
1071
|
-
free(): void;
|
|
1072
|
-
[Symbol.dispose](): void;
|
|
1073
|
-
decompress(): FheInt176;
|
|
1074
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt176;
|
|
1075
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1076
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt176;
|
|
1077
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt176;
|
|
1078
|
-
serialize(): Uint8Array;
|
|
1079
|
-
}
|
|
1080
|
-
export class CompressedFheInt184 {
|
|
1081
|
-
private constructor();
|
|
1082
|
-
free(): void;
|
|
1083
|
-
[Symbol.dispose](): void;
|
|
1084
|
-
decompress(): FheInt184;
|
|
1085
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt184;
|
|
1086
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1087
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt184;
|
|
1088
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt184;
|
|
1089
|
-
serialize(): Uint8Array;
|
|
1090
|
-
}
|
|
1091
|
-
export class CompressedFheInt192 {
|
|
1092
|
-
private constructor();
|
|
1093
|
-
free(): void;
|
|
1094
|
-
[Symbol.dispose](): void;
|
|
1095
|
-
decompress(): FheInt192;
|
|
1096
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt192;
|
|
1097
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1098
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt192;
|
|
1099
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt192;
|
|
1100
|
-
serialize(): Uint8Array;
|
|
1101
|
-
}
|
|
1102
874
|
export class CompressedFheInt2 {
|
|
1103
875
|
private constructor();
|
|
1104
876
|
free(): void;
|
|
@@ -1110,17 +882,6 @@ export class CompressedFheInt2 {
|
|
|
1110
882
|
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheInt2;
|
|
1111
883
|
serialize(): Uint8Array;
|
|
1112
884
|
}
|
|
1113
|
-
export class CompressedFheInt200 {
|
|
1114
|
-
private constructor();
|
|
1115
|
-
free(): void;
|
|
1116
|
-
[Symbol.dispose](): void;
|
|
1117
|
-
decompress(): FheInt200;
|
|
1118
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt200;
|
|
1119
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1120
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt200;
|
|
1121
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt200;
|
|
1122
|
-
serialize(): Uint8Array;
|
|
1123
|
-
}
|
|
1124
885
|
export class CompressedFheInt2048 {
|
|
1125
886
|
private constructor();
|
|
1126
887
|
free(): void;
|
|
@@ -1132,83 +893,6 @@ export class CompressedFheInt2048 {
|
|
|
1132
893
|
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt2048;
|
|
1133
894
|
serialize(): Uint8Array;
|
|
1134
895
|
}
|
|
1135
|
-
export class CompressedFheInt208 {
|
|
1136
|
-
private constructor();
|
|
1137
|
-
free(): void;
|
|
1138
|
-
[Symbol.dispose](): void;
|
|
1139
|
-
decompress(): FheInt208;
|
|
1140
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt208;
|
|
1141
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1142
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt208;
|
|
1143
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt208;
|
|
1144
|
-
serialize(): Uint8Array;
|
|
1145
|
-
}
|
|
1146
|
-
export class CompressedFheInt216 {
|
|
1147
|
-
private constructor();
|
|
1148
|
-
free(): void;
|
|
1149
|
-
[Symbol.dispose](): void;
|
|
1150
|
-
decompress(): FheInt216;
|
|
1151
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt216;
|
|
1152
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1153
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt216;
|
|
1154
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt216;
|
|
1155
|
-
serialize(): Uint8Array;
|
|
1156
|
-
}
|
|
1157
|
-
export class CompressedFheInt224 {
|
|
1158
|
-
private constructor();
|
|
1159
|
-
free(): void;
|
|
1160
|
-
[Symbol.dispose](): void;
|
|
1161
|
-
decompress(): FheInt224;
|
|
1162
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt224;
|
|
1163
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1164
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt224;
|
|
1165
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt224;
|
|
1166
|
-
serialize(): Uint8Array;
|
|
1167
|
-
}
|
|
1168
|
-
export class CompressedFheInt232 {
|
|
1169
|
-
private constructor();
|
|
1170
|
-
free(): void;
|
|
1171
|
-
[Symbol.dispose](): void;
|
|
1172
|
-
decompress(): FheInt232;
|
|
1173
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt232;
|
|
1174
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1175
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt232;
|
|
1176
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt232;
|
|
1177
|
-
serialize(): Uint8Array;
|
|
1178
|
-
}
|
|
1179
|
-
export class CompressedFheInt24 {
|
|
1180
|
-
private constructor();
|
|
1181
|
-
free(): void;
|
|
1182
|
-
[Symbol.dispose](): void;
|
|
1183
|
-
decompress(): FheInt24;
|
|
1184
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt24;
|
|
1185
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1186
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt24;
|
|
1187
|
-
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheInt24;
|
|
1188
|
-
serialize(): Uint8Array;
|
|
1189
|
-
}
|
|
1190
|
-
export class CompressedFheInt240 {
|
|
1191
|
-
private constructor();
|
|
1192
|
-
free(): void;
|
|
1193
|
-
[Symbol.dispose](): void;
|
|
1194
|
-
decompress(): FheInt240;
|
|
1195
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt240;
|
|
1196
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1197
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt240;
|
|
1198
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt240;
|
|
1199
|
-
serialize(): Uint8Array;
|
|
1200
|
-
}
|
|
1201
|
-
export class CompressedFheInt248 {
|
|
1202
|
-
private constructor();
|
|
1203
|
-
free(): void;
|
|
1204
|
-
[Symbol.dispose](): void;
|
|
1205
|
-
decompress(): FheInt248;
|
|
1206
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt248;
|
|
1207
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1208
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt248;
|
|
1209
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt248;
|
|
1210
|
-
serialize(): Uint8Array;
|
|
1211
|
-
}
|
|
1212
896
|
export class CompressedFheInt256 {
|
|
1213
897
|
private constructor();
|
|
1214
898
|
free(): void;
|
|
@@ -1242,28 +926,6 @@ export class CompressedFheInt4 {
|
|
|
1242
926
|
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheInt4;
|
|
1243
927
|
serialize(): Uint8Array;
|
|
1244
928
|
}
|
|
1245
|
-
export class CompressedFheInt40 {
|
|
1246
|
-
private constructor();
|
|
1247
|
-
free(): void;
|
|
1248
|
-
[Symbol.dispose](): void;
|
|
1249
|
-
decompress(): FheInt40;
|
|
1250
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt40;
|
|
1251
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1252
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt40;
|
|
1253
|
-
static encrypt_with_client_key(value: bigint, client_key: TfheClientKey): CompressedFheInt40;
|
|
1254
|
-
serialize(): Uint8Array;
|
|
1255
|
-
}
|
|
1256
|
-
export class CompressedFheInt48 {
|
|
1257
|
-
private constructor();
|
|
1258
|
-
free(): void;
|
|
1259
|
-
[Symbol.dispose](): void;
|
|
1260
|
-
decompress(): FheInt48;
|
|
1261
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt48;
|
|
1262
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1263
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt48;
|
|
1264
|
-
static encrypt_with_client_key(value: bigint, client_key: TfheClientKey): CompressedFheInt48;
|
|
1265
|
-
serialize(): Uint8Array;
|
|
1266
|
-
}
|
|
1267
929
|
export class CompressedFheInt512 {
|
|
1268
930
|
private constructor();
|
|
1269
931
|
free(): void;
|
|
@@ -1275,17 +937,6 @@ export class CompressedFheInt512 {
|
|
|
1275
937
|
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt512;
|
|
1276
938
|
serialize(): Uint8Array;
|
|
1277
939
|
}
|
|
1278
|
-
export class CompressedFheInt56 {
|
|
1279
|
-
private constructor();
|
|
1280
|
-
free(): void;
|
|
1281
|
-
[Symbol.dispose](): void;
|
|
1282
|
-
decompress(): FheInt56;
|
|
1283
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt56;
|
|
1284
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1285
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt56;
|
|
1286
|
-
static encrypt_with_client_key(value: bigint, client_key: TfheClientKey): CompressedFheInt56;
|
|
1287
|
-
serialize(): Uint8Array;
|
|
1288
|
-
}
|
|
1289
940
|
export class CompressedFheInt6 {
|
|
1290
941
|
private constructor();
|
|
1291
942
|
free(): void;
|
|
@@ -1308,17 +959,6 @@ export class CompressedFheInt64 {
|
|
|
1308
959
|
static encrypt_with_client_key(value: bigint, client_key: TfheClientKey): CompressedFheInt64;
|
|
1309
960
|
serialize(): Uint8Array;
|
|
1310
961
|
}
|
|
1311
|
-
export class CompressedFheInt72 {
|
|
1312
|
-
private constructor();
|
|
1313
|
-
free(): void;
|
|
1314
|
-
[Symbol.dispose](): void;
|
|
1315
|
-
decompress(): FheInt72;
|
|
1316
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt72;
|
|
1317
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1318
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt72;
|
|
1319
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt72;
|
|
1320
|
-
serialize(): Uint8Array;
|
|
1321
|
-
}
|
|
1322
962
|
export class CompressedFheInt8 {
|
|
1323
963
|
private constructor();
|
|
1324
964
|
free(): void;
|
|
@@ -1330,39 +970,6 @@ export class CompressedFheInt8 {
|
|
|
1330
970
|
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheInt8;
|
|
1331
971
|
serialize(): Uint8Array;
|
|
1332
972
|
}
|
|
1333
|
-
export class CompressedFheInt80 {
|
|
1334
|
-
private constructor();
|
|
1335
|
-
free(): void;
|
|
1336
|
-
[Symbol.dispose](): void;
|
|
1337
|
-
decompress(): FheInt80;
|
|
1338
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt80;
|
|
1339
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1340
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt80;
|
|
1341
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt80;
|
|
1342
|
-
serialize(): Uint8Array;
|
|
1343
|
-
}
|
|
1344
|
-
export class CompressedFheInt88 {
|
|
1345
|
-
private constructor();
|
|
1346
|
-
free(): void;
|
|
1347
|
-
[Symbol.dispose](): void;
|
|
1348
|
-
decompress(): FheInt88;
|
|
1349
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt88;
|
|
1350
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1351
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt88;
|
|
1352
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt88;
|
|
1353
|
-
serialize(): Uint8Array;
|
|
1354
|
-
}
|
|
1355
|
-
export class CompressedFheInt96 {
|
|
1356
|
-
private constructor();
|
|
1357
|
-
free(): void;
|
|
1358
|
-
[Symbol.dispose](): void;
|
|
1359
|
-
decompress(): FheInt96;
|
|
1360
|
-
static deserialize(buffer: Uint8Array): CompressedFheInt96;
|
|
1361
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1362
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheInt96;
|
|
1363
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheInt96;
|
|
1364
|
-
serialize(): Uint8Array;
|
|
1365
|
-
}
|
|
1366
973
|
export class CompressedFheUint10 {
|
|
1367
974
|
private constructor();
|
|
1368
975
|
free(): void;
|
|
@@ -1385,28 +992,6 @@ export class CompressedFheUint1024 {
|
|
|
1385
992
|
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint1024;
|
|
1386
993
|
serialize(): Uint8Array;
|
|
1387
994
|
}
|
|
1388
|
-
export class CompressedFheUint104 {
|
|
1389
|
-
private constructor();
|
|
1390
|
-
free(): void;
|
|
1391
|
-
[Symbol.dispose](): void;
|
|
1392
|
-
decompress(): FheUint104;
|
|
1393
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint104;
|
|
1394
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1395
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint104;
|
|
1396
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint104;
|
|
1397
|
-
serialize(): Uint8Array;
|
|
1398
|
-
}
|
|
1399
|
-
export class CompressedFheUint112 {
|
|
1400
|
-
private constructor();
|
|
1401
|
-
free(): void;
|
|
1402
|
-
[Symbol.dispose](): void;
|
|
1403
|
-
decompress(): FheUint112;
|
|
1404
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint112;
|
|
1405
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1406
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint112;
|
|
1407
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint112;
|
|
1408
|
-
serialize(): Uint8Array;
|
|
1409
|
-
}
|
|
1410
995
|
export class CompressedFheUint12 {
|
|
1411
996
|
private constructor();
|
|
1412
997
|
free(): void;
|
|
@@ -1418,17 +1003,6 @@ export class CompressedFheUint12 {
|
|
|
1418
1003
|
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheUint12;
|
|
1419
1004
|
serialize(): Uint8Array;
|
|
1420
1005
|
}
|
|
1421
|
-
export class CompressedFheUint120 {
|
|
1422
|
-
private constructor();
|
|
1423
|
-
free(): void;
|
|
1424
|
-
[Symbol.dispose](): void;
|
|
1425
|
-
decompress(): FheUint120;
|
|
1426
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint120;
|
|
1427
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1428
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint120;
|
|
1429
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint120;
|
|
1430
|
-
serialize(): Uint8Array;
|
|
1431
|
-
}
|
|
1432
1006
|
export class CompressedFheUint128 {
|
|
1433
1007
|
private constructor();
|
|
1434
1008
|
free(): void;
|
|
@@ -1440,17 +1014,6 @@ export class CompressedFheUint128 {
|
|
|
1440
1014
|
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint128;
|
|
1441
1015
|
serialize(): Uint8Array;
|
|
1442
1016
|
}
|
|
1443
|
-
export class CompressedFheUint136 {
|
|
1444
|
-
private constructor();
|
|
1445
|
-
free(): void;
|
|
1446
|
-
[Symbol.dispose](): void;
|
|
1447
|
-
decompress(): FheUint136;
|
|
1448
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint136;
|
|
1449
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1450
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint136;
|
|
1451
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint136;
|
|
1452
|
-
serialize(): Uint8Array;
|
|
1453
|
-
}
|
|
1454
1017
|
export class CompressedFheUint14 {
|
|
1455
1018
|
private constructor();
|
|
1456
1019
|
free(): void;
|
|
@@ -1462,28 +1025,6 @@ export class CompressedFheUint14 {
|
|
|
1462
1025
|
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheUint14;
|
|
1463
1026
|
serialize(): Uint8Array;
|
|
1464
1027
|
}
|
|
1465
|
-
export class CompressedFheUint144 {
|
|
1466
|
-
private constructor();
|
|
1467
|
-
free(): void;
|
|
1468
|
-
[Symbol.dispose](): void;
|
|
1469
|
-
decompress(): FheUint144;
|
|
1470
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint144;
|
|
1471
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1472
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint144;
|
|
1473
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint144;
|
|
1474
|
-
serialize(): Uint8Array;
|
|
1475
|
-
}
|
|
1476
|
-
export class CompressedFheUint152 {
|
|
1477
|
-
private constructor();
|
|
1478
|
-
free(): void;
|
|
1479
|
-
[Symbol.dispose](): void;
|
|
1480
|
-
decompress(): FheUint152;
|
|
1481
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint152;
|
|
1482
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1483
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint152;
|
|
1484
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint152;
|
|
1485
|
-
serialize(): Uint8Array;
|
|
1486
|
-
}
|
|
1487
1028
|
export class CompressedFheUint16 {
|
|
1488
1029
|
private constructor();
|
|
1489
1030
|
free(): void;
|
|
@@ -1506,50 +1047,6 @@ export class CompressedFheUint160 {
|
|
|
1506
1047
|
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint160;
|
|
1507
1048
|
serialize(): Uint8Array;
|
|
1508
1049
|
}
|
|
1509
|
-
export class CompressedFheUint168 {
|
|
1510
|
-
private constructor();
|
|
1511
|
-
free(): void;
|
|
1512
|
-
[Symbol.dispose](): void;
|
|
1513
|
-
decompress(): FheUint168;
|
|
1514
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint168;
|
|
1515
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1516
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint168;
|
|
1517
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint168;
|
|
1518
|
-
serialize(): Uint8Array;
|
|
1519
|
-
}
|
|
1520
|
-
export class CompressedFheUint176 {
|
|
1521
|
-
private constructor();
|
|
1522
|
-
free(): void;
|
|
1523
|
-
[Symbol.dispose](): void;
|
|
1524
|
-
decompress(): FheUint176;
|
|
1525
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint176;
|
|
1526
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1527
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint176;
|
|
1528
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint176;
|
|
1529
|
-
serialize(): Uint8Array;
|
|
1530
|
-
}
|
|
1531
|
-
export class CompressedFheUint184 {
|
|
1532
|
-
private constructor();
|
|
1533
|
-
free(): void;
|
|
1534
|
-
[Symbol.dispose](): void;
|
|
1535
|
-
decompress(): FheUint184;
|
|
1536
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint184;
|
|
1537
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1538
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint184;
|
|
1539
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint184;
|
|
1540
|
-
serialize(): Uint8Array;
|
|
1541
|
-
}
|
|
1542
|
-
export class CompressedFheUint192 {
|
|
1543
|
-
private constructor();
|
|
1544
|
-
free(): void;
|
|
1545
|
-
[Symbol.dispose](): void;
|
|
1546
|
-
decompress(): FheUint192;
|
|
1547
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint192;
|
|
1548
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1549
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint192;
|
|
1550
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint192;
|
|
1551
|
-
serialize(): Uint8Array;
|
|
1552
|
-
}
|
|
1553
1050
|
export class CompressedFheUint2 {
|
|
1554
1051
|
private constructor();
|
|
1555
1052
|
free(): void;
|
|
@@ -1561,17 +1058,6 @@ export class CompressedFheUint2 {
|
|
|
1561
1058
|
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheUint2;
|
|
1562
1059
|
serialize(): Uint8Array;
|
|
1563
1060
|
}
|
|
1564
|
-
export class CompressedFheUint200 {
|
|
1565
|
-
private constructor();
|
|
1566
|
-
free(): void;
|
|
1567
|
-
[Symbol.dispose](): void;
|
|
1568
|
-
decompress(): FheUint200;
|
|
1569
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint200;
|
|
1570
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1571
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint200;
|
|
1572
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint200;
|
|
1573
|
-
serialize(): Uint8Array;
|
|
1574
|
-
}
|
|
1575
1061
|
export class CompressedFheUint2048 {
|
|
1576
1062
|
private constructor();
|
|
1577
1063
|
free(): void;
|
|
@@ -1583,191 +1069,70 @@ export class CompressedFheUint2048 {
|
|
|
1583
1069
|
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint2048;
|
|
1584
1070
|
serialize(): Uint8Array;
|
|
1585
1071
|
}
|
|
1586
|
-
export class
|
|
1072
|
+
export class CompressedFheUint256 {
|
|
1587
1073
|
private constructor();
|
|
1588
1074
|
free(): void;
|
|
1589
1075
|
[Symbol.dispose](): void;
|
|
1590
|
-
decompress():
|
|
1591
|
-
static deserialize(buffer: Uint8Array):
|
|
1076
|
+
decompress(): FheUint256;
|
|
1077
|
+
static deserialize(buffer: Uint8Array): CompressedFheUint256;
|
|
1592
1078
|
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1593
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint):
|
|
1594
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey):
|
|
1079
|
+
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint256;
|
|
1080
|
+
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint256;
|
|
1595
1081
|
serialize(): Uint8Array;
|
|
1596
1082
|
}
|
|
1597
|
-
export class
|
|
1083
|
+
export class CompressedFheUint32 {
|
|
1598
1084
|
private constructor();
|
|
1599
1085
|
free(): void;
|
|
1600
1086
|
[Symbol.dispose](): void;
|
|
1601
|
-
decompress():
|
|
1602
|
-
static deserialize(buffer: Uint8Array):
|
|
1087
|
+
decompress(): FheUint32;
|
|
1088
|
+
static deserialize(buffer: Uint8Array): CompressedFheUint32;
|
|
1603
1089
|
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1604
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint):
|
|
1605
|
-
static encrypt_with_client_key(value:
|
|
1090
|
+
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint32;
|
|
1091
|
+
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheUint32;
|
|
1606
1092
|
serialize(): Uint8Array;
|
|
1607
1093
|
}
|
|
1608
|
-
export class
|
|
1094
|
+
export class CompressedFheUint4 {
|
|
1609
1095
|
private constructor();
|
|
1610
1096
|
free(): void;
|
|
1611
1097
|
[Symbol.dispose](): void;
|
|
1612
|
-
decompress():
|
|
1613
|
-
static deserialize(buffer: Uint8Array):
|
|
1098
|
+
decompress(): FheUint4;
|
|
1099
|
+
static deserialize(buffer: Uint8Array): CompressedFheUint4;
|
|
1614
1100
|
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1615
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint):
|
|
1616
|
-
static encrypt_with_client_key(value:
|
|
1101
|
+
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint4;
|
|
1102
|
+
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheUint4;
|
|
1617
1103
|
serialize(): Uint8Array;
|
|
1618
1104
|
}
|
|
1619
|
-
export class
|
|
1105
|
+
export class CompressedFheUint512 {
|
|
1620
1106
|
private constructor();
|
|
1621
1107
|
free(): void;
|
|
1622
1108
|
[Symbol.dispose](): void;
|
|
1623
|
-
decompress():
|
|
1624
|
-
static deserialize(buffer: Uint8Array):
|
|
1109
|
+
decompress(): FheUint512;
|
|
1110
|
+
static deserialize(buffer: Uint8Array): CompressedFheUint512;
|
|
1625
1111
|
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1626
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint):
|
|
1627
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey):
|
|
1112
|
+
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint512;
|
|
1113
|
+
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint512;
|
|
1628
1114
|
serialize(): Uint8Array;
|
|
1629
1115
|
}
|
|
1630
|
-
export class
|
|
1116
|
+
export class CompressedFheUint6 {
|
|
1631
1117
|
private constructor();
|
|
1632
1118
|
free(): void;
|
|
1633
1119
|
[Symbol.dispose](): void;
|
|
1634
|
-
decompress():
|
|
1635
|
-
static deserialize(buffer: Uint8Array):
|
|
1120
|
+
decompress(): FheUint6;
|
|
1121
|
+
static deserialize(buffer: Uint8Array): CompressedFheUint6;
|
|
1636
1122
|
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1637
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint):
|
|
1638
|
-
static encrypt_with_client_key(value: number, client_key: TfheClientKey):
|
|
1123
|
+
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint6;
|
|
1124
|
+
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheUint6;
|
|
1639
1125
|
serialize(): Uint8Array;
|
|
1640
1126
|
}
|
|
1641
|
-
export class
|
|
1127
|
+
export class CompressedFheUint64 {
|
|
1642
1128
|
private constructor();
|
|
1643
1129
|
free(): void;
|
|
1644
1130
|
[Symbol.dispose](): void;
|
|
1645
|
-
decompress():
|
|
1646
|
-
static deserialize(buffer: Uint8Array):
|
|
1131
|
+
decompress(): FheUint64;
|
|
1132
|
+
static deserialize(buffer: Uint8Array): CompressedFheUint64;
|
|
1647
1133
|
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1648
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint):
|
|
1649
|
-
static encrypt_with_client_key(value:
|
|
1650
|
-
serialize(): Uint8Array;
|
|
1651
|
-
}
|
|
1652
|
-
export class CompressedFheUint248 {
|
|
1653
|
-
private constructor();
|
|
1654
|
-
free(): void;
|
|
1655
|
-
[Symbol.dispose](): void;
|
|
1656
|
-
decompress(): FheUint248;
|
|
1657
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint248;
|
|
1658
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1659
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint248;
|
|
1660
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint248;
|
|
1661
|
-
serialize(): Uint8Array;
|
|
1662
|
-
}
|
|
1663
|
-
export class CompressedFheUint256 {
|
|
1664
|
-
private constructor();
|
|
1665
|
-
free(): void;
|
|
1666
|
-
[Symbol.dispose](): void;
|
|
1667
|
-
decompress(): FheUint256;
|
|
1668
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint256;
|
|
1669
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1670
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint256;
|
|
1671
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint256;
|
|
1672
|
-
serialize(): Uint8Array;
|
|
1673
|
-
}
|
|
1674
|
-
export class CompressedFheUint32 {
|
|
1675
|
-
private constructor();
|
|
1676
|
-
free(): void;
|
|
1677
|
-
[Symbol.dispose](): void;
|
|
1678
|
-
decompress(): FheUint32;
|
|
1679
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint32;
|
|
1680
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1681
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint32;
|
|
1682
|
-
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheUint32;
|
|
1683
|
-
serialize(): Uint8Array;
|
|
1684
|
-
}
|
|
1685
|
-
export class CompressedFheUint4 {
|
|
1686
|
-
private constructor();
|
|
1687
|
-
free(): void;
|
|
1688
|
-
[Symbol.dispose](): void;
|
|
1689
|
-
decompress(): FheUint4;
|
|
1690
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint4;
|
|
1691
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1692
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint4;
|
|
1693
|
-
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheUint4;
|
|
1694
|
-
serialize(): Uint8Array;
|
|
1695
|
-
}
|
|
1696
|
-
export class CompressedFheUint40 {
|
|
1697
|
-
private constructor();
|
|
1698
|
-
free(): void;
|
|
1699
|
-
[Symbol.dispose](): void;
|
|
1700
|
-
decompress(): FheUint40;
|
|
1701
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint40;
|
|
1702
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1703
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint40;
|
|
1704
|
-
static encrypt_with_client_key(value: bigint, client_key: TfheClientKey): CompressedFheUint40;
|
|
1705
|
-
serialize(): Uint8Array;
|
|
1706
|
-
}
|
|
1707
|
-
export class CompressedFheUint48 {
|
|
1708
|
-
private constructor();
|
|
1709
|
-
free(): void;
|
|
1710
|
-
[Symbol.dispose](): void;
|
|
1711
|
-
decompress(): FheUint48;
|
|
1712
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint48;
|
|
1713
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1714
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint48;
|
|
1715
|
-
static encrypt_with_client_key(value: bigint, client_key: TfheClientKey): CompressedFheUint48;
|
|
1716
|
-
serialize(): Uint8Array;
|
|
1717
|
-
}
|
|
1718
|
-
export class CompressedFheUint512 {
|
|
1719
|
-
private constructor();
|
|
1720
|
-
free(): void;
|
|
1721
|
-
[Symbol.dispose](): void;
|
|
1722
|
-
decompress(): FheUint512;
|
|
1723
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint512;
|
|
1724
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1725
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint512;
|
|
1726
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint512;
|
|
1727
|
-
serialize(): Uint8Array;
|
|
1728
|
-
}
|
|
1729
|
-
export class CompressedFheUint56 {
|
|
1730
|
-
private constructor();
|
|
1731
|
-
free(): void;
|
|
1732
|
-
[Symbol.dispose](): void;
|
|
1733
|
-
decompress(): FheUint56;
|
|
1734
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint56;
|
|
1735
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1736
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint56;
|
|
1737
|
-
static encrypt_with_client_key(value: bigint, client_key: TfheClientKey): CompressedFheUint56;
|
|
1738
|
-
serialize(): Uint8Array;
|
|
1739
|
-
}
|
|
1740
|
-
export class CompressedFheUint6 {
|
|
1741
|
-
private constructor();
|
|
1742
|
-
free(): void;
|
|
1743
|
-
[Symbol.dispose](): void;
|
|
1744
|
-
decompress(): FheUint6;
|
|
1745
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint6;
|
|
1746
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1747
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint6;
|
|
1748
|
-
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheUint6;
|
|
1749
|
-
serialize(): Uint8Array;
|
|
1750
|
-
}
|
|
1751
|
-
export class CompressedFheUint64 {
|
|
1752
|
-
private constructor();
|
|
1753
|
-
free(): void;
|
|
1754
|
-
[Symbol.dispose](): void;
|
|
1755
|
-
decompress(): FheUint64;
|
|
1756
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint64;
|
|
1757
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1758
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint64;
|
|
1759
|
-
static encrypt_with_client_key(value: bigint, client_key: TfheClientKey): CompressedFheUint64;
|
|
1760
|
-
serialize(): Uint8Array;
|
|
1761
|
-
}
|
|
1762
|
-
export class CompressedFheUint72 {
|
|
1763
|
-
private constructor();
|
|
1764
|
-
free(): void;
|
|
1765
|
-
[Symbol.dispose](): void;
|
|
1766
|
-
decompress(): FheUint72;
|
|
1767
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint72;
|
|
1768
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1769
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint72;
|
|
1770
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint72;
|
|
1134
|
+
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint64;
|
|
1135
|
+
static encrypt_with_client_key(value: bigint, client_key: TfheClientKey): CompressedFheUint64;
|
|
1771
1136
|
serialize(): Uint8Array;
|
|
1772
1137
|
}
|
|
1773
1138
|
export class CompressedFheUint8 {
|
|
@@ -1781,39 +1146,6 @@ export class CompressedFheUint8 {
|
|
|
1781
1146
|
static encrypt_with_client_key(value: number, client_key: TfheClientKey): CompressedFheUint8;
|
|
1782
1147
|
serialize(): Uint8Array;
|
|
1783
1148
|
}
|
|
1784
|
-
export class CompressedFheUint80 {
|
|
1785
|
-
private constructor();
|
|
1786
|
-
free(): void;
|
|
1787
|
-
[Symbol.dispose](): void;
|
|
1788
|
-
decompress(): FheUint80;
|
|
1789
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint80;
|
|
1790
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1791
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint80;
|
|
1792
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint80;
|
|
1793
|
-
serialize(): Uint8Array;
|
|
1794
|
-
}
|
|
1795
|
-
export class CompressedFheUint88 {
|
|
1796
|
-
private constructor();
|
|
1797
|
-
free(): void;
|
|
1798
|
-
[Symbol.dispose](): void;
|
|
1799
|
-
decompress(): FheUint88;
|
|
1800
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint88;
|
|
1801
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1802
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint88;
|
|
1803
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint88;
|
|
1804
|
-
serialize(): Uint8Array;
|
|
1805
|
-
}
|
|
1806
|
-
export class CompressedFheUint96 {
|
|
1807
|
-
private constructor();
|
|
1808
|
-
free(): void;
|
|
1809
|
-
[Symbol.dispose](): void;
|
|
1810
|
-
decompress(): FheUint96;
|
|
1811
|
-
static deserialize(buffer: Uint8Array): CompressedFheUint96;
|
|
1812
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1813
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): CompressedFheUint96;
|
|
1814
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): CompressedFheUint96;
|
|
1815
|
-
serialize(): Uint8Array;
|
|
1816
|
-
}
|
|
1817
1149
|
export class FheBool {
|
|
1818
1150
|
private constructor();
|
|
1819
1151
|
free(): void;
|
|
@@ -1853,32 +1185,6 @@ export class FheInt1024 {
|
|
|
1853
1185
|
decrypt(client_key: TfheClientKey): any;
|
|
1854
1186
|
serialize(): Uint8Array;
|
|
1855
1187
|
}
|
|
1856
|
-
export class FheInt104 {
|
|
1857
|
-
private constructor();
|
|
1858
|
-
free(): void;
|
|
1859
|
-
[Symbol.dispose](): void;
|
|
1860
|
-
static deserialize(buffer: Uint8Array): FheInt104;
|
|
1861
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1862
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt104;
|
|
1863
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt104;
|
|
1864
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt104;
|
|
1865
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt104;
|
|
1866
|
-
decrypt(client_key: TfheClientKey): any;
|
|
1867
|
-
serialize(): Uint8Array;
|
|
1868
|
-
}
|
|
1869
|
-
export class FheInt112 {
|
|
1870
|
-
private constructor();
|
|
1871
|
-
free(): void;
|
|
1872
|
-
[Symbol.dispose](): void;
|
|
1873
|
-
static deserialize(buffer: Uint8Array): FheInt112;
|
|
1874
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1875
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt112;
|
|
1876
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt112;
|
|
1877
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt112;
|
|
1878
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt112;
|
|
1879
|
-
decrypt(client_key: TfheClientKey): any;
|
|
1880
|
-
serialize(): Uint8Array;
|
|
1881
|
-
}
|
|
1882
1188
|
export class FheInt12 {
|
|
1883
1189
|
private constructor();
|
|
1884
1190
|
free(): void;
|
|
@@ -1892,19 +1198,6 @@ export class FheInt12 {
|
|
|
1892
1198
|
decrypt(client_key: TfheClientKey): number;
|
|
1893
1199
|
serialize(): Uint8Array;
|
|
1894
1200
|
}
|
|
1895
|
-
export class FheInt120 {
|
|
1896
|
-
private constructor();
|
|
1897
|
-
free(): void;
|
|
1898
|
-
[Symbol.dispose](): void;
|
|
1899
|
-
static deserialize(buffer: Uint8Array): FheInt120;
|
|
1900
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1901
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt120;
|
|
1902
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt120;
|
|
1903
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt120;
|
|
1904
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt120;
|
|
1905
|
-
decrypt(client_key: TfheClientKey): any;
|
|
1906
|
-
serialize(): Uint8Array;
|
|
1907
|
-
}
|
|
1908
1201
|
export class FheInt128 {
|
|
1909
1202
|
private constructor();
|
|
1910
1203
|
free(): void;
|
|
@@ -1918,19 +1211,6 @@ export class FheInt128 {
|
|
|
1918
1211
|
decrypt(client_key: TfheClientKey): any;
|
|
1919
1212
|
serialize(): Uint8Array;
|
|
1920
1213
|
}
|
|
1921
|
-
export class FheInt136 {
|
|
1922
|
-
private constructor();
|
|
1923
|
-
free(): void;
|
|
1924
|
-
[Symbol.dispose](): void;
|
|
1925
|
-
static deserialize(buffer: Uint8Array): FheInt136;
|
|
1926
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1927
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt136;
|
|
1928
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt136;
|
|
1929
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt136;
|
|
1930
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt136;
|
|
1931
|
-
decrypt(client_key: TfheClientKey): any;
|
|
1932
|
-
serialize(): Uint8Array;
|
|
1933
|
-
}
|
|
1934
1214
|
export class FheInt14 {
|
|
1935
1215
|
private constructor();
|
|
1936
1216
|
free(): void;
|
|
@@ -1944,32 +1224,6 @@ export class FheInt14 {
|
|
|
1944
1224
|
decrypt(client_key: TfheClientKey): number;
|
|
1945
1225
|
serialize(): Uint8Array;
|
|
1946
1226
|
}
|
|
1947
|
-
export class FheInt144 {
|
|
1948
|
-
private constructor();
|
|
1949
|
-
free(): void;
|
|
1950
|
-
[Symbol.dispose](): void;
|
|
1951
|
-
static deserialize(buffer: Uint8Array): FheInt144;
|
|
1952
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1953
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt144;
|
|
1954
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt144;
|
|
1955
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt144;
|
|
1956
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt144;
|
|
1957
|
-
decrypt(client_key: TfheClientKey): any;
|
|
1958
|
-
serialize(): Uint8Array;
|
|
1959
|
-
}
|
|
1960
|
-
export class FheInt152 {
|
|
1961
|
-
private constructor();
|
|
1962
|
-
free(): void;
|
|
1963
|
-
[Symbol.dispose](): void;
|
|
1964
|
-
static deserialize(buffer: Uint8Array): FheInt152;
|
|
1965
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
1966
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt152;
|
|
1967
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt152;
|
|
1968
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt152;
|
|
1969
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt152;
|
|
1970
|
-
decrypt(client_key: TfheClientKey): any;
|
|
1971
|
-
serialize(): Uint8Array;
|
|
1972
|
-
}
|
|
1973
1227
|
export class FheInt16 {
|
|
1974
1228
|
private constructor();
|
|
1975
1229
|
free(): void;
|
|
@@ -1996,58 +1250,6 @@ export class FheInt160 {
|
|
|
1996
1250
|
decrypt(client_key: TfheClientKey): any;
|
|
1997
1251
|
serialize(): Uint8Array;
|
|
1998
1252
|
}
|
|
1999
|
-
export class FheInt168 {
|
|
2000
|
-
private constructor();
|
|
2001
|
-
free(): void;
|
|
2002
|
-
[Symbol.dispose](): void;
|
|
2003
|
-
static deserialize(buffer: Uint8Array): FheInt168;
|
|
2004
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2005
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt168;
|
|
2006
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt168;
|
|
2007
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt168;
|
|
2008
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt168;
|
|
2009
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2010
|
-
serialize(): Uint8Array;
|
|
2011
|
-
}
|
|
2012
|
-
export class FheInt176 {
|
|
2013
|
-
private constructor();
|
|
2014
|
-
free(): void;
|
|
2015
|
-
[Symbol.dispose](): void;
|
|
2016
|
-
static deserialize(buffer: Uint8Array): FheInt176;
|
|
2017
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2018
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt176;
|
|
2019
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt176;
|
|
2020
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt176;
|
|
2021
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt176;
|
|
2022
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2023
|
-
serialize(): Uint8Array;
|
|
2024
|
-
}
|
|
2025
|
-
export class FheInt184 {
|
|
2026
|
-
private constructor();
|
|
2027
|
-
free(): void;
|
|
2028
|
-
[Symbol.dispose](): void;
|
|
2029
|
-
static deserialize(buffer: Uint8Array): FheInt184;
|
|
2030
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2031
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt184;
|
|
2032
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt184;
|
|
2033
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt184;
|
|
2034
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt184;
|
|
2035
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2036
|
-
serialize(): Uint8Array;
|
|
2037
|
-
}
|
|
2038
|
-
export class FheInt192 {
|
|
2039
|
-
private constructor();
|
|
2040
|
-
free(): void;
|
|
2041
|
-
[Symbol.dispose](): void;
|
|
2042
|
-
static deserialize(buffer: Uint8Array): FheInt192;
|
|
2043
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2044
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt192;
|
|
2045
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt192;
|
|
2046
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt192;
|
|
2047
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt192;
|
|
2048
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2049
|
-
serialize(): Uint8Array;
|
|
2050
|
-
}
|
|
2051
1253
|
export class FheInt2 {
|
|
2052
1254
|
private constructor();
|
|
2053
1255
|
free(): void;
|
|
@@ -2061,19 +1263,6 @@ export class FheInt2 {
|
|
|
2061
1263
|
decrypt(client_key: TfheClientKey): number;
|
|
2062
1264
|
serialize(): Uint8Array;
|
|
2063
1265
|
}
|
|
2064
|
-
export class FheInt200 {
|
|
2065
|
-
private constructor();
|
|
2066
|
-
free(): void;
|
|
2067
|
-
[Symbol.dispose](): void;
|
|
2068
|
-
static deserialize(buffer: Uint8Array): FheInt200;
|
|
2069
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2070
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt200;
|
|
2071
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt200;
|
|
2072
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt200;
|
|
2073
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt200;
|
|
2074
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2075
|
-
serialize(): Uint8Array;
|
|
2076
|
-
}
|
|
2077
1266
|
export class FheInt2048 {
|
|
2078
1267
|
private constructor();
|
|
2079
1268
|
free(): void;
|
|
@@ -2087,97 +1276,6 @@ export class FheInt2048 {
|
|
|
2087
1276
|
decrypt(client_key: TfheClientKey): any;
|
|
2088
1277
|
serialize(): Uint8Array;
|
|
2089
1278
|
}
|
|
2090
|
-
export class FheInt208 {
|
|
2091
|
-
private constructor();
|
|
2092
|
-
free(): void;
|
|
2093
|
-
[Symbol.dispose](): void;
|
|
2094
|
-
static deserialize(buffer: Uint8Array): FheInt208;
|
|
2095
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2096
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt208;
|
|
2097
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt208;
|
|
2098
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt208;
|
|
2099
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt208;
|
|
2100
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2101
|
-
serialize(): Uint8Array;
|
|
2102
|
-
}
|
|
2103
|
-
export class FheInt216 {
|
|
2104
|
-
private constructor();
|
|
2105
|
-
free(): void;
|
|
2106
|
-
[Symbol.dispose](): void;
|
|
2107
|
-
static deserialize(buffer: Uint8Array): FheInt216;
|
|
2108
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2109
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt216;
|
|
2110
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt216;
|
|
2111
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt216;
|
|
2112
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt216;
|
|
2113
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2114
|
-
serialize(): Uint8Array;
|
|
2115
|
-
}
|
|
2116
|
-
export class FheInt224 {
|
|
2117
|
-
private constructor();
|
|
2118
|
-
free(): void;
|
|
2119
|
-
[Symbol.dispose](): void;
|
|
2120
|
-
static deserialize(buffer: Uint8Array): FheInt224;
|
|
2121
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2122
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt224;
|
|
2123
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt224;
|
|
2124
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt224;
|
|
2125
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt224;
|
|
2126
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2127
|
-
serialize(): Uint8Array;
|
|
2128
|
-
}
|
|
2129
|
-
export class FheInt232 {
|
|
2130
|
-
private constructor();
|
|
2131
|
-
free(): void;
|
|
2132
|
-
[Symbol.dispose](): void;
|
|
2133
|
-
static deserialize(buffer: Uint8Array): FheInt232;
|
|
2134
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2135
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt232;
|
|
2136
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt232;
|
|
2137
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt232;
|
|
2138
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt232;
|
|
2139
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2140
|
-
serialize(): Uint8Array;
|
|
2141
|
-
}
|
|
2142
|
-
export class FheInt24 {
|
|
2143
|
-
private constructor();
|
|
2144
|
-
free(): void;
|
|
2145
|
-
[Symbol.dispose](): void;
|
|
2146
|
-
static deserialize(buffer: Uint8Array): FheInt24;
|
|
2147
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2148
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt24;
|
|
2149
|
-
static encrypt_with_client_key(value: number, client_key: TfheClientKey): FheInt24;
|
|
2150
|
-
static encrypt_with_public_key(value: number, public_key: TfhePublicKey): FheInt24;
|
|
2151
|
-
static encrypt_with_compressed_public_key(value: number, compressed_public_key: TfheCompressedPublicKey): FheInt24;
|
|
2152
|
-
decrypt(client_key: TfheClientKey): number;
|
|
2153
|
-
serialize(): Uint8Array;
|
|
2154
|
-
}
|
|
2155
|
-
export class FheInt240 {
|
|
2156
|
-
private constructor();
|
|
2157
|
-
free(): void;
|
|
2158
|
-
[Symbol.dispose](): void;
|
|
2159
|
-
static deserialize(buffer: Uint8Array): FheInt240;
|
|
2160
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2161
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt240;
|
|
2162
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt240;
|
|
2163
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt240;
|
|
2164
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt240;
|
|
2165
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2166
|
-
serialize(): Uint8Array;
|
|
2167
|
-
}
|
|
2168
|
-
export class FheInt248 {
|
|
2169
|
-
private constructor();
|
|
2170
|
-
free(): void;
|
|
2171
|
-
[Symbol.dispose](): void;
|
|
2172
|
-
static deserialize(buffer: Uint8Array): FheInt248;
|
|
2173
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2174
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt248;
|
|
2175
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt248;
|
|
2176
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt248;
|
|
2177
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt248;
|
|
2178
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2179
|
-
serialize(): Uint8Array;
|
|
2180
|
-
}
|
|
2181
1279
|
export class FheInt256 {
|
|
2182
1280
|
private constructor();
|
|
2183
1281
|
free(): void;
|
|
@@ -2217,32 +1315,6 @@ export class FheInt4 {
|
|
|
2217
1315
|
decrypt(client_key: TfheClientKey): number;
|
|
2218
1316
|
serialize(): Uint8Array;
|
|
2219
1317
|
}
|
|
2220
|
-
export class FheInt40 {
|
|
2221
|
-
private constructor();
|
|
2222
|
-
free(): void;
|
|
2223
|
-
[Symbol.dispose](): void;
|
|
2224
|
-
static deserialize(buffer: Uint8Array): FheInt40;
|
|
2225
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2226
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt40;
|
|
2227
|
-
static encrypt_with_client_key(value: bigint, client_key: TfheClientKey): FheInt40;
|
|
2228
|
-
static encrypt_with_public_key(value: bigint, public_key: TfhePublicKey): FheInt40;
|
|
2229
|
-
static encrypt_with_compressed_public_key(value: bigint, compressed_public_key: TfheCompressedPublicKey): FheInt40;
|
|
2230
|
-
decrypt(client_key: TfheClientKey): bigint;
|
|
2231
|
-
serialize(): Uint8Array;
|
|
2232
|
-
}
|
|
2233
|
-
export class FheInt48 {
|
|
2234
|
-
private constructor();
|
|
2235
|
-
free(): void;
|
|
2236
|
-
[Symbol.dispose](): void;
|
|
2237
|
-
static deserialize(buffer: Uint8Array): FheInt48;
|
|
2238
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2239
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt48;
|
|
2240
|
-
static encrypt_with_client_key(value: bigint, client_key: TfheClientKey): FheInt48;
|
|
2241
|
-
static encrypt_with_public_key(value: bigint, public_key: TfhePublicKey): FheInt48;
|
|
2242
|
-
static encrypt_with_compressed_public_key(value: bigint, compressed_public_key: TfheCompressedPublicKey): FheInt48;
|
|
2243
|
-
decrypt(client_key: TfheClientKey): bigint;
|
|
2244
|
-
serialize(): Uint8Array;
|
|
2245
|
-
}
|
|
2246
1318
|
export class FheInt512 {
|
|
2247
1319
|
private constructor();
|
|
2248
1320
|
free(): void;
|
|
@@ -2256,19 +1328,6 @@ export class FheInt512 {
|
|
|
2256
1328
|
decrypt(client_key: TfheClientKey): any;
|
|
2257
1329
|
serialize(): Uint8Array;
|
|
2258
1330
|
}
|
|
2259
|
-
export class FheInt56 {
|
|
2260
|
-
private constructor();
|
|
2261
|
-
free(): void;
|
|
2262
|
-
[Symbol.dispose](): void;
|
|
2263
|
-
static deserialize(buffer: Uint8Array): FheInt56;
|
|
2264
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2265
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt56;
|
|
2266
|
-
static encrypt_with_client_key(value: bigint, client_key: TfheClientKey): FheInt56;
|
|
2267
|
-
static encrypt_with_public_key(value: bigint, public_key: TfhePublicKey): FheInt56;
|
|
2268
|
-
static encrypt_with_compressed_public_key(value: bigint, compressed_public_key: TfheCompressedPublicKey): FheInt56;
|
|
2269
|
-
decrypt(client_key: TfheClientKey): bigint;
|
|
2270
|
-
serialize(): Uint8Array;
|
|
2271
|
-
}
|
|
2272
1331
|
export class FheInt6 {
|
|
2273
1332
|
private constructor();
|
|
2274
1333
|
free(): void;
|
|
@@ -2295,19 +1354,6 @@ export class FheInt64 {
|
|
|
2295
1354
|
decrypt(client_key: TfheClientKey): bigint;
|
|
2296
1355
|
serialize(): Uint8Array;
|
|
2297
1356
|
}
|
|
2298
|
-
export class FheInt72 {
|
|
2299
|
-
private constructor();
|
|
2300
|
-
free(): void;
|
|
2301
|
-
[Symbol.dispose](): void;
|
|
2302
|
-
static deserialize(buffer: Uint8Array): FheInt72;
|
|
2303
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2304
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt72;
|
|
2305
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt72;
|
|
2306
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt72;
|
|
2307
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt72;
|
|
2308
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2309
|
-
serialize(): Uint8Array;
|
|
2310
|
-
}
|
|
2311
1357
|
export class FheInt8 {
|
|
2312
1358
|
private constructor();
|
|
2313
1359
|
free(): void;
|
|
@@ -2321,45 +1367,6 @@ export class FheInt8 {
|
|
|
2321
1367
|
decrypt(client_key: TfheClientKey): number;
|
|
2322
1368
|
serialize(): Uint8Array;
|
|
2323
1369
|
}
|
|
2324
|
-
export class FheInt80 {
|
|
2325
|
-
private constructor();
|
|
2326
|
-
free(): void;
|
|
2327
|
-
[Symbol.dispose](): void;
|
|
2328
|
-
static deserialize(buffer: Uint8Array): FheInt80;
|
|
2329
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2330
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt80;
|
|
2331
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt80;
|
|
2332
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt80;
|
|
2333
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt80;
|
|
2334
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2335
|
-
serialize(): Uint8Array;
|
|
2336
|
-
}
|
|
2337
|
-
export class FheInt88 {
|
|
2338
|
-
private constructor();
|
|
2339
|
-
free(): void;
|
|
2340
|
-
[Symbol.dispose](): void;
|
|
2341
|
-
static deserialize(buffer: Uint8Array): FheInt88;
|
|
2342
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2343
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt88;
|
|
2344
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt88;
|
|
2345
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt88;
|
|
2346
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt88;
|
|
2347
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2348
|
-
serialize(): Uint8Array;
|
|
2349
|
-
}
|
|
2350
|
-
export class FheInt96 {
|
|
2351
|
-
private constructor();
|
|
2352
|
-
free(): void;
|
|
2353
|
-
[Symbol.dispose](): void;
|
|
2354
|
-
static deserialize(buffer: Uint8Array): FheInt96;
|
|
2355
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2356
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheInt96;
|
|
2357
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheInt96;
|
|
2358
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheInt96;
|
|
2359
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheInt96;
|
|
2360
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2361
|
-
serialize(): Uint8Array;
|
|
2362
|
-
}
|
|
2363
1370
|
export class FheUint10 {
|
|
2364
1371
|
private constructor();
|
|
2365
1372
|
free(): void;
|
|
@@ -2386,32 +1393,6 @@ export class FheUint1024 {
|
|
|
2386
1393
|
decrypt(client_key: TfheClientKey): any;
|
|
2387
1394
|
serialize(): Uint8Array;
|
|
2388
1395
|
}
|
|
2389
|
-
export class FheUint104 {
|
|
2390
|
-
private constructor();
|
|
2391
|
-
free(): void;
|
|
2392
|
-
[Symbol.dispose](): void;
|
|
2393
|
-
static deserialize(buffer: Uint8Array): FheUint104;
|
|
2394
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2395
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint104;
|
|
2396
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint104;
|
|
2397
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint104;
|
|
2398
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint104;
|
|
2399
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2400
|
-
serialize(): Uint8Array;
|
|
2401
|
-
}
|
|
2402
|
-
export class FheUint112 {
|
|
2403
|
-
private constructor();
|
|
2404
|
-
free(): void;
|
|
2405
|
-
[Symbol.dispose](): void;
|
|
2406
|
-
static deserialize(buffer: Uint8Array): FheUint112;
|
|
2407
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2408
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint112;
|
|
2409
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint112;
|
|
2410
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint112;
|
|
2411
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint112;
|
|
2412
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2413
|
-
serialize(): Uint8Array;
|
|
2414
|
-
}
|
|
2415
1396
|
export class FheUint12 {
|
|
2416
1397
|
private constructor();
|
|
2417
1398
|
free(): void;
|
|
@@ -2425,19 +1406,6 @@ export class FheUint12 {
|
|
|
2425
1406
|
decrypt(client_key: TfheClientKey): number;
|
|
2426
1407
|
serialize(): Uint8Array;
|
|
2427
1408
|
}
|
|
2428
|
-
export class FheUint120 {
|
|
2429
|
-
private constructor();
|
|
2430
|
-
free(): void;
|
|
2431
|
-
[Symbol.dispose](): void;
|
|
2432
|
-
static deserialize(buffer: Uint8Array): FheUint120;
|
|
2433
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2434
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint120;
|
|
2435
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint120;
|
|
2436
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint120;
|
|
2437
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint120;
|
|
2438
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2439
|
-
serialize(): Uint8Array;
|
|
2440
|
-
}
|
|
2441
1409
|
export class FheUint128 {
|
|
2442
1410
|
private constructor();
|
|
2443
1411
|
free(): void;
|
|
@@ -2451,19 +1419,6 @@ export class FheUint128 {
|
|
|
2451
1419
|
decrypt(client_key: TfheClientKey): any;
|
|
2452
1420
|
serialize(): Uint8Array;
|
|
2453
1421
|
}
|
|
2454
|
-
export class FheUint136 {
|
|
2455
|
-
private constructor();
|
|
2456
|
-
free(): void;
|
|
2457
|
-
[Symbol.dispose](): void;
|
|
2458
|
-
static deserialize(buffer: Uint8Array): FheUint136;
|
|
2459
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2460
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint136;
|
|
2461
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint136;
|
|
2462
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint136;
|
|
2463
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint136;
|
|
2464
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2465
|
-
serialize(): Uint8Array;
|
|
2466
|
-
}
|
|
2467
1422
|
export class FheUint14 {
|
|
2468
1423
|
private constructor();
|
|
2469
1424
|
free(): void;
|
|
@@ -2477,32 +1432,6 @@ export class FheUint14 {
|
|
|
2477
1432
|
decrypt(client_key: TfheClientKey): number;
|
|
2478
1433
|
serialize(): Uint8Array;
|
|
2479
1434
|
}
|
|
2480
|
-
export class FheUint144 {
|
|
2481
|
-
private constructor();
|
|
2482
|
-
free(): void;
|
|
2483
|
-
[Symbol.dispose](): void;
|
|
2484
|
-
static deserialize(buffer: Uint8Array): FheUint144;
|
|
2485
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2486
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint144;
|
|
2487
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint144;
|
|
2488
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint144;
|
|
2489
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint144;
|
|
2490
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2491
|
-
serialize(): Uint8Array;
|
|
2492
|
-
}
|
|
2493
|
-
export class FheUint152 {
|
|
2494
|
-
private constructor();
|
|
2495
|
-
free(): void;
|
|
2496
|
-
[Symbol.dispose](): void;
|
|
2497
|
-
static deserialize(buffer: Uint8Array): FheUint152;
|
|
2498
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2499
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint152;
|
|
2500
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint152;
|
|
2501
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint152;
|
|
2502
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint152;
|
|
2503
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2504
|
-
serialize(): Uint8Array;
|
|
2505
|
-
}
|
|
2506
1435
|
export class FheUint16 {
|
|
2507
1436
|
private constructor();
|
|
2508
1437
|
free(): void;
|
|
@@ -2529,58 +1458,6 @@ export class FheUint160 {
|
|
|
2529
1458
|
decrypt(client_key: TfheClientKey): any;
|
|
2530
1459
|
serialize(): Uint8Array;
|
|
2531
1460
|
}
|
|
2532
|
-
export class FheUint168 {
|
|
2533
|
-
private constructor();
|
|
2534
|
-
free(): void;
|
|
2535
|
-
[Symbol.dispose](): void;
|
|
2536
|
-
static deserialize(buffer: Uint8Array): FheUint168;
|
|
2537
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2538
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint168;
|
|
2539
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint168;
|
|
2540
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint168;
|
|
2541
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint168;
|
|
2542
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2543
|
-
serialize(): Uint8Array;
|
|
2544
|
-
}
|
|
2545
|
-
export class FheUint176 {
|
|
2546
|
-
private constructor();
|
|
2547
|
-
free(): void;
|
|
2548
|
-
[Symbol.dispose](): void;
|
|
2549
|
-
static deserialize(buffer: Uint8Array): FheUint176;
|
|
2550
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2551
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint176;
|
|
2552
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint176;
|
|
2553
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint176;
|
|
2554
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint176;
|
|
2555
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2556
|
-
serialize(): Uint8Array;
|
|
2557
|
-
}
|
|
2558
|
-
export class FheUint184 {
|
|
2559
|
-
private constructor();
|
|
2560
|
-
free(): void;
|
|
2561
|
-
[Symbol.dispose](): void;
|
|
2562
|
-
static deserialize(buffer: Uint8Array): FheUint184;
|
|
2563
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2564
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint184;
|
|
2565
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint184;
|
|
2566
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint184;
|
|
2567
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint184;
|
|
2568
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2569
|
-
serialize(): Uint8Array;
|
|
2570
|
-
}
|
|
2571
|
-
export class FheUint192 {
|
|
2572
|
-
private constructor();
|
|
2573
|
-
free(): void;
|
|
2574
|
-
[Symbol.dispose](): void;
|
|
2575
|
-
static deserialize(buffer: Uint8Array): FheUint192;
|
|
2576
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2577
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint192;
|
|
2578
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint192;
|
|
2579
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint192;
|
|
2580
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint192;
|
|
2581
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2582
|
-
serialize(): Uint8Array;
|
|
2583
|
-
}
|
|
2584
1461
|
export class FheUint2 {
|
|
2585
1462
|
private constructor();
|
|
2586
1463
|
free(): void;
|
|
@@ -2589,125 +1466,21 @@ export class FheUint2 {
|
|
|
2589
1466
|
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2590
1467
|
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint2;
|
|
2591
1468
|
static encrypt_with_client_key(value: number, client_key: TfheClientKey): FheUint2;
|
|
2592
|
-
static encrypt_with_public_key(value: number, public_key: TfhePublicKey): FheUint2;
|
|
2593
|
-
static encrypt_with_compressed_public_key(value: number, compressed_public_key: TfheCompressedPublicKey): FheUint2;
|
|
2594
|
-
decrypt(client_key: TfheClientKey): number;
|
|
2595
|
-
serialize(): Uint8Array;
|
|
2596
|
-
}
|
|
2597
|
-
export class FheUint200 {
|
|
2598
|
-
private constructor();
|
|
2599
|
-
free(): void;
|
|
2600
|
-
[Symbol.dispose](): void;
|
|
2601
|
-
static deserialize(buffer: Uint8Array): FheUint200;
|
|
2602
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2603
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint200;
|
|
2604
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint200;
|
|
2605
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint200;
|
|
2606
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint200;
|
|
2607
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2608
|
-
serialize(): Uint8Array;
|
|
2609
|
-
}
|
|
2610
|
-
export class FheUint2048 {
|
|
2611
|
-
private constructor();
|
|
2612
|
-
free(): void;
|
|
2613
|
-
[Symbol.dispose](): void;
|
|
2614
|
-
static deserialize(buffer: Uint8Array): FheUint2048;
|
|
2615
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2616
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint2048;
|
|
2617
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint2048;
|
|
2618
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint2048;
|
|
2619
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint2048;
|
|
2620
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2621
|
-
serialize(): Uint8Array;
|
|
2622
|
-
}
|
|
2623
|
-
export class FheUint208 {
|
|
2624
|
-
private constructor();
|
|
2625
|
-
free(): void;
|
|
2626
|
-
[Symbol.dispose](): void;
|
|
2627
|
-
static deserialize(buffer: Uint8Array): FheUint208;
|
|
2628
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2629
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint208;
|
|
2630
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint208;
|
|
2631
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint208;
|
|
2632
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint208;
|
|
2633
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2634
|
-
serialize(): Uint8Array;
|
|
2635
|
-
}
|
|
2636
|
-
export class FheUint216 {
|
|
2637
|
-
private constructor();
|
|
2638
|
-
free(): void;
|
|
2639
|
-
[Symbol.dispose](): void;
|
|
2640
|
-
static deserialize(buffer: Uint8Array): FheUint216;
|
|
2641
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2642
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint216;
|
|
2643
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint216;
|
|
2644
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint216;
|
|
2645
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint216;
|
|
2646
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2647
|
-
serialize(): Uint8Array;
|
|
2648
|
-
}
|
|
2649
|
-
export class FheUint224 {
|
|
2650
|
-
private constructor();
|
|
2651
|
-
free(): void;
|
|
2652
|
-
[Symbol.dispose](): void;
|
|
2653
|
-
static deserialize(buffer: Uint8Array): FheUint224;
|
|
2654
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2655
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint224;
|
|
2656
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint224;
|
|
2657
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint224;
|
|
2658
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint224;
|
|
2659
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2660
|
-
serialize(): Uint8Array;
|
|
2661
|
-
}
|
|
2662
|
-
export class FheUint232 {
|
|
2663
|
-
private constructor();
|
|
2664
|
-
free(): void;
|
|
2665
|
-
[Symbol.dispose](): void;
|
|
2666
|
-
static deserialize(buffer: Uint8Array): FheUint232;
|
|
2667
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2668
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint232;
|
|
2669
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint232;
|
|
2670
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint232;
|
|
2671
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint232;
|
|
2672
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2673
|
-
serialize(): Uint8Array;
|
|
2674
|
-
}
|
|
2675
|
-
export class FheUint24 {
|
|
2676
|
-
private constructor();
|
|
2677
|
-
free(): void;
|
|
2678
|
-
[Symbol.dispose](): void;
|
|
2679
|
-
static deserialize(buffer: Uint8Array): FheUint24;
|
|
2680
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2681
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint24;
|
|
2682
|
-
static encrypt_with_client_key(value: number, client_key: TfheClientKey): FheUint24;
|
|
2683
|
-
static encrypt_with_public_key(value: number, public_key: TfhePublicKey): FheUint24;
|
|
2684
|
-
static encrypt_with_compressed_public_key(value: number, compressed_public_key: TfheCompressedPublicKey): FheUint24;
|
|
2685
|
-
decrypt(client_key: TfheClientKey): number;
|
|
2686
|
-
serialize(): Uint8Array;
|
|
2687
|
-
}
|
|
2688
|
-
export class FheUint240 {
|
|
2689
|
-
private constructor();
|
|
2690
|
-
free(): void;
|
|
2691
|
-
[Symbol.dispose](): void;
|
|
2692
|
-
static deserialize(buffer: Uint8Array): FheUint240;
|
|
2693
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2694
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint240;
|
|
2695
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint240;
|
|
2696
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint240;
|
|
2697
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint240;
|
|
2698
|
-
decrypt(client_key: TfheClientKey): any;
|
|
1469
|
+
static encrypt_with_public_key(value: number, public_key: TfhePublicKey): FheUint2;
|
|
1470
|
+
static encrypt_with_compressed_public_key(value: number, compressed_public_key: TfheCompressedPublicKey): FheUint2;
|
|
1471
|
+
decrypt(client_key: TfheClientKey): number;
|
|
2699
1472
|
serialize(): Uint8Array;
|
|
2700
1473
|
}
|
|
2701
|
-
export class
|
|
1474
|
+
export class FheUint2048 {
|
|
2702
1475
|
private constructor();
|
|
2703
1476
|
free(): void;
|
|
2704
1477
|
[Symbol.dispose](): void;
|
|
2705
|
-
static deserialize(buffer: Uint8Array):
|
|
1478
|
+
static deserialize(buffer: Uint8Array): FheUint2048;
|
|
2706
1479
|
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2707
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint):
|
|
2708
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey):
|
|
2709
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey):
|
|
2710
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey):
|
|
1480
|
+
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint2048;
|
|
1481
|
+
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint2048;
|
|
1482
|
+
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint2048;
|
|
1483
|
+
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint2048;
|
|
2711
1484
|
decrypt(client_key: TfheClientKey): any;
|
|
2712
1485
|
serialize(): Uint8Array;
|
|
2713
1486
|
}
|
|
@@ -2750,32 +1523,6 @@ export class FheUint4 {
|
|
|
2750
1523
|
decrypt(client_key: TfheClientKey): number;
|
|
2751
1524
|
serialize(): Uint8Array;
|
|
2752
1525
|
}
|
|
2753
|
-
export class FheUint40 {
|
|
2754
|
-
private constructor();
|
|
2755
|
-
free(): void;
|
|
2756
|
-
[Symbol.dispose](): void;
|
|
2757
|
-
static deserialize(buffer: Uint8Array): FheUint40;
|
|
2758
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2759
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint40;
|
|
2760
|
-
static encrypt_with_client_key(value: bigint, client_key: TfheClientKey): FheUint40;
|
|
2761
|
-
static encrypt_with_public_key(value: bigint, public_key: TfhePublicKey): FheUint40;
|
|
2762
|
-
static encrypt_with_compressed_public_key(value: bigint, compressed_public_key: TfheCompressedPublicKey): FheUint40;
|
|
2763
|
-
decrypt(client_key: TfheClientKey): bigint;
|
|
2764
|
-
serialize(): Uint8Array;
|
|
2765
|
-
}
|
|
2766
|
-
export class FheUint48 {
|
|
2767
|
-
private constructor();
|
|
2768
|
-
free(): void;
|
|
2769
|
-
[Symbol.dispose](): void;
|
|
2770
|
-
static deserialize(buffer: Uint8Array): FheUint48;
|
|
2771
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2772
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint48;
|
|
2773
|
-
static encrypt_with_client_key(value: bigint, client_key: TfheClientKey): FheUint48;
|
|
2774
|
-
static encrypt_with_public_key(value: bigint, public_key: TfhePublicKey): FheUint48;
|
|
2775
|
-
static encrypt_with_compressed_public_key(value: bigint, compressed_public_key: TfheCompressedPublicKey): FheUint48;
|
|
2776
|
-
decrypt(client_key: TfheClientKey): bigint;
|
|
2777
|
-
serialize(): Uint8Array;
|
|
2778
|
-
}
|
|
2779
1526
|
export class FheUint512 {
|
|
2780
1527
|
private constructor();
|
|
2781
1528
|
free(): void;
|
|
@@ -2789,19 +1536,6 @@ export class FheUint512 {
|
|
|
2789
1536
|
decrypt(client_key: TfheClientKey): any;
|
|
2790
1537
|
serialize(): Uint8Array;
|
|
2791
1538
|
}
|
|
2792
|
-
export class FheUint56 {
|
|
2793
|
-
private constructor();
|
|
2794
|
-
free(): void;
|
|
2795
|
-
[Symbol.dispose](): void;
|
|
2796
|
-
static deserialize(buffer: Uint8Array): FheUint56;
|
|
2797
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2798
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint56;
|
|
2799
|
-
static encrypt_with_client_key(value: bigint, client_key: TfheClientKey): FheUint56;
|
|
2800
|
-
static encrypt_with_public_key(value: bigint, public_key: TfhePublicKey): FheUint56;
|
|
2801
|
-
static encrypt_with_compressed_public_key(value: bigint, compressed_public_key: TfheCompressedPublicKey): FheUint56;
|
|
2802
|
-
decrypt(client_key: TfheClientKey): bigint;
|
|
2803
|
-
serialize(): Uint8Array;
|
|
2804
|
-
}
|
|
2805
1539
|
export class FheUint6 {
|
|
2806
1540
|
private constructor();
|
|
2807
1541
|
free(): void;
|
|
@@ -2828,19 +1562,6 @@ export class FheUint64 {
|
|
|
2828
1562
|
decrypt(client_key: TfheClientKey): bigint;
|
|
2829
1563
|
serialize(): Uint8Array;
|
|
2830
1564
|
}
|
|
2831
|
-
export class FheUint72 {
|
|
2832
|
-
private constructor();
|
|
2833
|
-
free(): void;
|
|
2834
|
-
[Symbol.dispose](): void;
|
|
2835
|
-
static deserialize(buffer: Uint8Array): FheUint72;
|
|
2836
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2837
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint72;
|
|
2838
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint72;
|
|
2839
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint72;
|
|
2840
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint72;
|
|
2841
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2842
|
-
serialize(): Uint8Array;
|
|
2843
|
-
}
|
|
2844
1565
|
export class FheUint8 {
|
|
2845
1566
|
private constructor();
|
|
2846
1567
|
free(): void;
|
|
@@ -2854,60 +1575,6 @@ export class FheUint8 {
|
|
|
2854
1575
|
decrypt(client_key: TfheClientKey): number;
|
|
2855
1576
|
serialize(): Uint8Array;
|
|
2856
1577
|
}
|
|
2857
|
-
export class FheUint80 {
|
|
2858
|
-
private constructor();
|
|
2859
|
-
free(): void;
|
|
2860
|
-
[Symbol.dispose](): void;
|
|
2861
|
-
static deserialize(buffer: Uint8Array): FheUint80;
|
|
2862
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2863
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint80;
|
|
2864
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint80;
|
|
2865
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint80;
|
|
2866
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint80;
|
|
2867
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2868
|
-
serialize(): Uint8Array;
|
|
2869
|
-
}
|
|
2870
|
-
export class FheUint88 {
|
|
2871
|
-
private constructor();
|
|
2872
|
-
free(): void;
|
|
2873
|
-
[Symbol.dispose](): void;
|
|
2874
|
-
static deserialize(buffer: Uint8Array): FheUint88;
|
|
2875
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2876
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint88;
|
|
2877
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint88;
|
|
2878
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint88;
|
|
2879
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint88;
|
|
2880
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2881
|
-
serialize(): Uint8Array;
|
|
2882
|
-
}
|
|
2883
|
-
export class FheUint96 {
|
|
2884
|
-
private constructor();
|
|
2885
|
-
free(): void;
|
|
2886
|
-
[Symbol.dispose](): void;
|
|
2887
|
-
static deserialize(buffer: Uint8Array): FheUint96;
|
|
2888
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2889
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): FheUint96;
|
|
2890
|
-
static encrypt_with_client_key(value: any, client_key: TfheClientKey): FheUint96;
|
|
2891
|
-
static encrypt_with_public_key(value: any, public_key: TfhePublicKey): FheUint96;
|
|
2892
|
-
static encrypt_with_compressed_public_key(value: any, compressed_public_key: TfheCompressedPublicKey): FheUint96;
|
|
2893
|
-
decrypt(client_key: TfheClientKey): any;
|
|
2894
|
-
serialize(): Uint8Array;
|
|
2895
|
-
}
|
|
2896
|
-
export class ProvenCompactCiphertextList {
|
|
2897
|
-
private constructor();
|
|
2898
|
-
free(): void;
|
|
2899
|
-
[Symbol.dispose](): void;
|
|
2900
|
-
static deserialize(buffer: Uint8Array): ProvenCompactCiphertextList;
|
|
2901
|
-
get_kind_of(index: number): FheTypes | undefined;
|
|
2902
|
-
safe_serialize(serialized_size_limit: bigint): Uint8Array;
|
|
2903
|
-
static safe_deserialize(buffer: Uint8Array, serialized_size_limit: bigint): ProvenCompactCiphertextList;
|
|
2904
|
-
verify_and_expand(crs: CompactPkeCrs, public_key: TfheCompactPublicKey, metadata: Uint8Array): CompactCiphertextListExpander;
|
|
2905
|
-
expand_without_verification(): CompactCiphertextListExpander;
|
|
2906
|
-
len(): number;
|
|
2907
|
-
static builder(public_key: TfheCompactPublicKey): CompactCiphertextListBuilder;
|
|
2908
|
-
is_empty(): boolean;
|
|
2909
|
-
serialize(): Uint8Array;
|
|
2910
|
-
}
|
|
2911
1578
|
export class Shortint {
|
|
2912
1579
|
private constructor();
|
|
2913
1580
|
free(): void;
|
|
@@ -3105,186 +1772,157 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
3105
1772
|
|
|
3106
1773
|
export interface InitOutput {
|
|
3107
1774
|
readonly memory: WebAssembly.Memory;
|
|
3108
|
-
readonly
|
|
3109
|
-
readonly
|
|
3110
|
-
readonly
|
|
3111
|
-
readonly
|
|
3112
|
-
readonly
|
|
3113
|
-
readonly
|
|
3114
|
-
readonly
|
|
3115
|
-
readonly
|
|
3116
|
-
readonly
|
|
3117
|
-
readonly
|
|
3118
|
-
readonly
|
|
3119
|
-
readonly
|
|
3120
|
-
readonly
|
|
3121
|
-
readonly
|
|
3122
|
-
readonly
|
|
3123
|
-
readonly
|
|
3124
|
-
readonly
|
|
3125
|
-
readonly
|
|
3126
|
-
readonly
|
|
3127
|
-
readonly
|
|
3128
|
-
readonly
|
|
3129
|
-
readonly
|
|
3130
|
-
readonly
|
|
3131
|
-
readonly
|
|
3132
|
-
readonly
|
|
3133
|
-
readonly
|
|
3134
|
-
readonly
|
|
3135
|
-
readonly
|
|
3136
|
-
readonly
|
|
3137
|
-
readonly
|
|
3138
|
-
readonly
|
|
3139
|
-
readonly
|
|
3140
|
-
readonly
|
|
3141
|
-
readonly
|
|
3142
|
-
readonly
|
|
3143
|
-
readonly
|
|
3144
|
-
readonly
|
|
3145
|
-
readonly
|
|
3146
|
-
readonly
|
|
3147
|
-
readonly
|
|
3148
|
-
readonly
|
|
3149
|
-
readonly
|
|
3150
|
-
readonly
|
|
3151
|
-
readonly
|
|
3152
|
-
readonly
|
|
3153
|
-
readonly
|
|
3154
|
-
readonly
|
|
3155
|
-
readonly
|
|
3156
|
-
readonly
|
|
3157
|
-
readonly
|
|
3158
|
-
readonly
|
|
3159
|
-
readonly
|
|
3160
|
-
readonly
|
|
3161
|
-
readonly
|
|
3162
|
-
readonly
|
|
3163
|
-
readonly
|
|
3164
|
-
readonly
|
|
3165
|
-
readonly
|
|
3166
|
-
readonly
|
|
3167
|
-
readonly
|
|
3168
|
-
readonly
|
|
3169
|
-
readonly
|
|
3170
|
-
readonly
|
|
3171
|
-
readonly
|
|
3172
|
-
readonly
|
|
3173
|
-
readonly
|
|
3174
|
-
readonly
|
|
3175
|
-
readonly
|
|
3176
|
-
readonly
|
|
3177
|
-
readonly
|
|
3178
|
-
readonly
|
|
3179
|
-
readonly
|
|
3180
|
-
readonly
|
|
3181
|
-
readonly
|
|
3182
|
-
readonly __wbg_compressedfheuint32_free: (a: number, b: number) => void;
|
|
3183
|
-
readonly __wbg_compressedfheuint40_free: (a: number, b: number) => void;
|
|
3184
|
-
readonly __wbg_compressedfheuint48_free: (a: number, b: number) => void;
|
|
3185
|
-
readonly __wbg_compressedfheuint4_free: (a: number, b: number) => void;
|
|
3186
|
-
readonly __wbg_compressedfheuint512_free: (a: number, b: number) => void;
|
|
3187
|
-
readonly __wbg_compressedfheuint56_free: (a: number, b: number) => void;
|
|
3188
|
-
readonly __wbg_compressedfheuint64_free: (a: number, b: number) => void;
|
|
3189
|
-
readonly __wbg_compressedfheuint6_free: (a: number, b: number) => void;
|
|
3190
|
-
readonly __wbg_compressedfheuint72_free: (a: number, b: number) => void;
|
|
3191
|
-
readonly __wbg_compressedfheuint80_free: (a: number, b: number) => void;
|
|
3192
|
-
readonly __wbg_compressedfheuint88_free: (a: number, b: number) => void;
|
|
3193
|
-
readonly __wbg_compressedfheuint8_free: (a: number, b: number) => void;
|
|
3194
|
-
readonly __wbg_compressedfheuint96_free: (a: number, b: number) => void;
|
|
3195
|
-
readonly __wbg_fhebool_free: (a: number, b: number) => void;
|
|
3196
|
-
readonly __wbg_fheint1024_free: (a: number, b: number) => void;
|
|
3197
|
-
readonly __wbg_fheint104_free: (a: number, b: number) => void;
|
|
3198
|
-
readonly __wbg_fheint10_free: (a: number, b: number) => void;
|
|
3199
|
-
readonly __wbg_fheint112_free: (a: number, b: number) => void;
|
|
3200
|
-
readonly __wbg_fheint120_free: (a: number, b: number) => void;
|
|
3201
|
-
readonly __wbg_fheint128_free: (a: number, b: number) => void;
|
|
3202
|
-
readonly __wbg_fheint12_free: (a: number, b: number) => void;
|
|
3203
|
-
readonly __wbg_fheint136_free: (a: number, b: number) => void;
|
|
3204
|
-
readonly __wbg_fheint144_free: (a: number, b: number) => void;
|
|
3205
|
-
readonly __wbg_fheint14_free: (a: number, b: number) => void;
|
|
3206
|
-
readonly __wbg_fheint152_free: (a: number, b: number) => void;
|
|
3207
|
-
readonly __wbg_fheint160_free: (a: number, b: number) => void;
|
|
3208
|
-
readonly __wbg_fheint168_free: (a: number, b: number) => void;
|
|
3209
|
-
readonly __wbg_fheint16_free: (a: number, b: number) => void;
|
|
3210
|
-
readonly __wbg_fheint176_free: (a: number, b: number) => void;
|
|
3211
|
-
readonly __wbg_fheint184_free: (a: number, b: number) => void;
|
|
3212
|
-
readonly __wbg_fheint192_free: (a: number, b: number) => void;
|
|
3213
|
-
readonly __wbg_fheint200_free: (a: number, b: number) => void;
|
|
3214
|
-
readonly __wbg_fheint2048_free: (a: number, b: number) => void;
|
|
3215
|
-
readonly __wbg_fheint208_free: (a: number, b: number) => void;
|
|
3216
|
-
readonly __wbg_fheint216_free: (a: number, b: number) => void;
|
|
3217
|
-
readonly __wbg_fheint224_free: (a: number, b: number) => void;
|
|
3218
|
-
readonly __wbg_fheint232_free: (a: number, b: number) => void;
|
|
3219
|
-
readonly __wbg_fheint240_free: (a: number, b: number) => void;
|
|
3220
|
-
readonly __wbg_fheint248_free: (a: number, b: number) => void;
|
|
3221
|
-
readonly __wbg_fheint24_free: (a: number, b: number) => void;
|
|
3222
|
-
readonly __wbg_fheint256_free: (a: number, b: number) => void;
|
|
3223
|
-
readonly __wbg_fheint2_free: (a: number, b: number) => void;
|
|
3224
|
-
readonly __wbg_fheint32_free: (a: number, b: number) => void;
|
|
3225
|
-
readonly __wbg_fheint40_free: (a: number, b: number) => void;
|
|
3226
|
-
readonly __wbg_fheint48_free: (a: number, b: number) => void;
|
|
3227
|
-
readonly __wbg_fheint4_free: (a: number, b: number) => void;
|
|
3228
|
-
readonly __wbg_fheint512_free: (a: number, b: number) => void;
|
|
3229
|
-
readonly __wbg_fheint56_free: (a: number, b: number) => void;
|
|
3230
|
-
readonly __wbg_fheint64_free: (a: number, b: number) => void;
|
|
3231
|
-
readonly __wbg_fheint6_free: (a: number, b: number) => void;
|
|
3232
|
-
readonly __wbg_fheint72_free: (a: number, b: number) => void;
|
|
3233
|
-
readonly __wbg_fheint80_free: (a: number, b: number) => void;
|
|
3234
|
-
readonly __wbg_fheint88_free: (a: number, b: number) => void;
|
|
3235
|
-
readonly __wbg_fheint8_free: (a: number, b: number) => void;
|
|
3236
|
-
readonly __wbg_fheint96_free: (a: number, b: number) => void;
|
|
3237
|
-
readonly __wbg_fheuint1024_free: (a: number, b: number) => void;
|
|
3238
|
-
readonly __wbg_fheuint104_free: (a: number, b: number) => void;
|
|
3239
|
-
readonly __wbg_fheuint10_free: (a: number, b: number) => void;
|
|
3240
|
-
readonly __wbg_fheuint112_free: (a: number, b: number) => void;
|
|
3241
|
-
readonly __wbg_fheuint120_free: (a: number, b: number) => void;
|
|
3242
|
-
readonly __wbg_fheuint128_free: (a: number, b: number) => void;
|
|
3243
|
-
readonly __wbg_fheuint12_free: (a: number, b: number) => void;
|
|
3244
|
-
readonly __wbg_fheuint136_free: (a: number, b: number) => void;
|
|
3245
|
-
readonly __wbg_fheuint144_free: (a: number, b: number) => void;
|
|
3246
|
-
readonly __wbg_fheuint14_free: (a: number, b: number) => void;
|
|
3247
|
-
readonly __wbg_fheuint152_free: (a: number, b: number) => void;
|
|
3248
|
-
readonly __wbg_fheuint160_free: (a: number, b: number) => void;
|
|
3249
|
-
readonly __wbg_fheuint168_free: (a: number, b: number) => void;
|
|
3250
|
-
readonly __wbg_fheuint16_free: (a: number, b: number) => void;
|
|
3251
|
-
readonly __wbg_fheuint176_free: (a: number, b: number) => void;
|
|
3252
|
-
readonly __wbg_fheuint184_free: (a: number, b: number) => void;
|
|
3253
|
-
readonly __wbg_fheuint192_free: (a: number, b: number) => void;
|
|
3254
|
-
readonly __wbg_fheuint200_free: (a: number, b: number) => void;
|
|
3255
|
-
readonly __wbg_fheuint2048_free: (a: number, b: number) => void;
|
|
3256
|
-
readonly __wbg_fheuint208_free: (a: number, b: number) => void;
|
|
3257
|
-
readonly __wbg_fheuint216_free: (a: number, b: number) => void;
|
|
3258
|
-
readonly __wbg_fheuint224_free: (a: number, b: number) => void;
|
|
3259
|
-
readonly __wbg_fheuint232_free: (a: number, b: number) => void;
|
|
3260
|
-
readonly __wbg_fheuint240_free: (a: number, b: number) => void;
|
|
3261
|
-
readonly __wbg_fheuint248_free: (a: number, b: number) => void;
|
|
3262
|
-
readonly __wbg_fheuint24_free: (a: number, b: number) => void;
|
|
3263
|
-
readonly __wbg_fheuint256_free: (a: number, b: number) => void;
|
|
3264
|
-
readonly __wbg_fheuint2_free: (a: number, b: number) => void;
|
|
3265
|
-
readonly __wbg_fheuint32_free: (a: number, b: number) => void;
|
|
3266
|
-
readonly __wbg_fheuint40_free: (a: number, b: number) => void;
|
|
3267
|
-
readonly __wbg_fheuint48_free: (a: number, b: number) => void;
|
|
3268
|
-
readonly __wbg_fheuint4_free: (a: number, b: number) => void;
|
|
3269
|
-
readonly __wbg_fheuint512_free: (a: number, b: number) => void;
|
|
3270
|
-
readonly __wbg_fheuint56_free: (a: number, b: number) => void;
|
|
3271
|
-
readonly __wbg_fheuint64_free: (a: number, b: number) => void;
|
|
3272
|
-
readonly __wbg_fheuint6_free: (a: number, b: number) => void;
|
|
3273
|
-
readonly __wbg_fheuint72_free: (a: number, b: number) => void;
|
|
3274
|
-
readonly __wbg_fheuint80_free: (a: number, b: number) => void;
|
|
3275
|
-
readonly __wbg_fheuint88_free: (a: number, b: number) => void;
|
|
3276
|
-
readonly __wbg_fheuint8_free: (a: number, b: number) => void;
|
|
3277
|
-
readonly __wbg_fheuint96_free: (a: number, b: number) => void;
|
|
3278
|
-
readonly __wbg_provencompactciphertextlist_free: (a: number, b: number) => void;
|
|
1775
|
+
readonly __wbg_shortint_free: (a: number, b: number) => void;
|
|
1776
|
+
readonly __wbg_shortintciphertext_free: (a: number, b: number) => void;
|
|
1777
|
+
readonly __wbg_shortintclientkey_free: (a: number, b: number) => void;
|
|
1778
|
+
readonly __wbg_shortintcompactpublickeyencryptionparameters_free: (a: number, b: number) => void;
|
|
1779
|
+
readonly __wbg_shortintcompressedciphertext_free: (a: number, b: number) => void;
|
|
1780
|
+
readonly __wbg_shortintcompressedpublickey_free: (a: number, b: number) => void;
|
|
1781
|
+
readonly __wbg_shortintcompressedserverkey_free: (a: number, b: number) => void;
|
|
1782
|
+
readonly __wbg_shortintnoisedistribution_free: (a: number, b: number) => void;
|
|
1783
|
+
readonly __wbg_shortintparameters_free: (a: number, b: number) => void;
|
|
1784
|
+
readonly __wbg_shortintpublickey_free: (a: number, b: number) => void;
|
|
1785
|
+
readonly __wbg_tfhe_free: (a: number, b: number) => void;
|
|
1786
|
+
readonly shortint_decompress_ciphertext: (a: number) => number;
|
|
1787
|
+
readonly shortint_decrypt: (a: number, b: number) => bigint;
|
|
1788
|
+
readonly shortint_deserialize_ciphertext: (a: number, b: number) => [number, number, number];
|
|
1789
|
+
readonly shortint_deserialize_client_key: (a: number, b: number) => [number, number, number];
|
|
1790
|
+
readonly shortint_deserialize_compressed_ciphertext: (a: number, b: number) => [number, number, number];
|
|
1791
|
+
readonly shortint_deserialize_compressed_public_key: (a: number, b: number) => [number, number, number];
|
|
1792
|
+
readonly shortint_deserialize_compressed_server_key: (a: number, b: number) => [number, number, number];
|
|
1793
|
+
readonly shortint_deserialize_public_key: (a: number, b: number) => [number, number, number];
|
|
1794
|
+
readonly shortint_encrypt: (a: number, b: bigint) => number;
|
|
1795
|
+
readonly shortint_encrypt_compressed: (a: number, b: bigint) => number;
|
|
1796
|
+
readonly shortint_encrypt_with_compressed_public_key: (a: number, b: bigint) => number;
|
|
1797
|
+
readonly shortint_encrypt_with_public_key: (a: number, b: bigint) => number;
|
|
1798
|
+
readonly shortint_new_client_key: (a: number) => number;
|
|
1799
|
+
readonly shortint_new_client_key_from_seed_and_parameters: (a: bigint, b: bigint, c: number) => number;
|
|
1800
|
+
readonly shortint_new_compressed_public_key: (a: number) => number;
|
|
1801
|
+
readonly shortint_new_compressed_server_key: (a: number) => number;
|
|
1802
|
+
readonly shortint_new_gaussian_from_std_dev: (a: number) => number;
|
|
1803
|
+
readonly shortint_new_parameters: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: bigint, k: bigint, l: bigint, m: number, n: number, o: number) => number;
|
|
1804
|
+
readonly shortint_new_public_key: (a: number) => number;
|
|
1805
|
+
readonly shortint_params_name: (a: number) => [number, number, number, number];
|
|
1806
|
+
readonly shortint_pke_params_name: (a: number) => [number, number];
|
|
1807
|
+
readonly shortint_serialize_ciphertext: (a: number) => [number, number, number, number];
|
|
1808
|
+
readonly shortint_serialize_client_key: (a: number) => [number, number, number, number];
|
|
1809
|
+
readonly shortint_serialize_compressed_ciphertext: (a: number) => [number, number, number, number];
|
|
1810
|
+
readonly shortint_serialize_compressed_public_key: (a: number) => [number, number, number, number];
|
|
1811
|
+
readonly shortint_serialize_compressed_server_key: (a: number) => [number, number, number, number];
|
|
1812
|
+
readonly shortint_serialize_public_key: (a: number) => [number, number, number, number];
|
|
1813
|
+
readonly shortint_try_new_t_uniform: (a: number) => [number, number, number];
|
|
1814
|
+
readonly shortintcompactpublickeyencryptionparameters_new: (a: number) => number;
|
|
1815
|
+
readonly shortintcompactpublickeyencryptionparameters_new_parameters: (a: number, b: number, c: bigint, d: bigint, e: number, f: number, g: number, h: number) => [number, number, number];
|
|
1816
|
+
readonly shortintparameters_carry_modulus: (a: number) => bigint;
|
|
1817
|
+
readonly shortintparameters_encryption_key_choice: (a: number) => number;
|
|
1818
|
+
readonly shortintparameters_glwe_dimension: (a: number) => number;
|
|
1819
|
+
readonly shortintparameters_glwe_noise_distribution: (a: number) => number;
|
|
1820
|
+
readonly shortintparameters_ks_base_log: (a: number) => number;
|
|
1821
|
+
readonly shortintparameters_ks_level: (a: number) => number;
|
|
1822
|
+
readonly shortintparameters_lwe_dimension: (a: number) => number;
|
|
1823
|
+
readonly shortintparameters_message_modulus: (a: number) => bigint;
|
|
1824
|
+
readonly shortintparameters_new: (a: number) => [number, number, number];
|
|
1825
|
+
readonly shortintparameters_pbs_base_log: (a: number) => number;
|
|
1826
|
+
readonly shortintparameters_pbs_level: (a: number) => number;
|
|
1827
|
+
readonly shortintparameters_polynomial_size: (a: number) => number;
|
|
1828
|
+
readonly shortintparameters_set_carry_modulus: (a: number, b: bigint) => void;
|
|
1829
|
+
readonly shortintparameters_set_encryption_key_choice: (a: number, b: number) => void;
|
|
1830
|
+
readonly shortintparameters_set_glwe_dimension: (a: number, b: number) => void;
|
|
1831
|
+
readonly shortintparameters_set_glwe_noise_distribution: (a: number, b: number) => void;
|
|
1832
|
+
readonly shortintparameters_set_ks_base_log: (a: number, b: number) => void;
|
|
1833
|
+
readonly shortintparameters_set_ks_level: (a: number, b: number) => void;
|
|
1834
|
+
readonly shortintparameters_set_lwe_dimension: (a: number, b: number) => void;
|
|
1835
|
+
readonly shortintparameters_set_lwe_noise_distribution: (a: number, b: number) => void;
|
|
1836
|
+
readonly shortintparameters_set_message_modulus: (a: number, b: bigint) => void;
|
|
1837
|
+
readonly shortintparameters_set_pbs_base_log: (a: number, b: number) => void;
|
|
1838
|
+
readonly shortintparameters_set_pbs_level: (a: number, b: number) => void;
|
|
1839
|
+
readonly shortintparameters_set_polynomial_size: (a: number, b: number) => void;
|
|
1840
|
+
readonly shortintparameters_lwe_noise_distribution: (a: number) => number;
|
|
1841
|
+
readonly __wbg_boolean_free: (a: number, b: number) => void;
|
|
1842
|
+
readonly __wbg_booleanciphertext_free: (a: number, b: number) => void;
|
|
1843
|
+
readonly __wbg_booleanclientkey_free: (a: number, b: number) => void;
|
|
1844
|
+
readonly __wbg_booleancompressedciphertext_free: (a: number, b: number) => void;
|
|
1845
|
+
readonly __wbg_booleancompressedserverkey_free: (a: number, b: number) => void;
|
|
1846
|
+
readonly __wbg_booleannoisedistribution_free: (a: number, b: number) => void;
|
|
1847
|
+
readonly __wbg_booleanparameters_free: (a: number, b: number) => void;
|
|
1848
|
+
readonly __wbg_booleanpublickey_free: (a: number, b: number) => void;
|
|
3279
1849
|
readonly __wbg_tfheclientkey_free: (a: number, b: number) => void;
|
|
3280
1850
|
readonly __wbg_tfhecompactpublickey_free: (a: number, b: number) => void;
|
|
3281
1851
|
readonly __wbg_tfhecompressedcompactpublickey_free: (a: number, b: number) => void;
|
|
3282
1852
|
readonly __wbg_tfhecompressedpublickey_free: (a: number, b: number) => void;
|
|
3283
1853
|
readonly __wbg_tfhecompressedserverkey_free: (a: number, b: number) => void;
|
|
1854
|
+
readonly __wbg_tfhepublickey_free: (a: number, b: number) => void;
|
|
1855
|
+
readonly __wbg_tfheserverkey_free: (a: number, b: number) => void;
|
|
1856
|
+
readonly boolean_decompress_ciphertext: (a: number) => number;
|
|
1857
|
+
readonly boolean_decrypt: (a: number, b: number) => number;
|
|
1858
|
+
readonly boolean_deserialize_ciphertext: (a: number, b: number) => [number, number, number];
|
|
1859
|
+
readonly boolean_deserialize_client_key: (a: number, b: number) => [number, number, number];
|
|
1860
|
+
readonly boolean_deserialize_compressed_ciphertext: (a: number, b: number) => [number, number, number];
|
|
1861
|
+
readonly boolean_deserialize_compressed_server_key: (a: number, b: number) => [number, number, number];
|
|
1862
|
+
readonly boolean_deserialize_public_key: (a: number, b: number) => [number, number, number];
|
|
1863
|
+
readonly boolean_encrypt: (a: number, b: number) => number;
|
|
1864
|
+
readonly boolean_encrypt_compressed: (a: number, b: number) => number;
|
|
1865
|
+
readonly boolean_encrypt_with_public_key: (a: number, b: number) => number;
|
|
1866
|
+
readonly boolean_get_parameters: (a: number) => [number, number, number];
|
|
1867
|
+
readonly boolean_new_client_key: (a: number) => number;
|
|
1868
|
+
readonly boolean_new_client_key_from_seed_and_parameters: (a: bigint, b: bigint, c: number) => number;
|
|
1869
|
+
readonly boolean_new_compressed_server_key: (a: number) => number;
|
|
1870
|
+
readonly boolean_new_gaussian_from_std_dev: (a: number) => number;
|
|
1871
|
+
readonly boolean_new_parameters: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => number;
|
|
1872
|
+
readonly boolean_new_public_key: (a: number) => number;
|
|
1873
|
+
readonly boolean_serialize_ciphertext: (a: number) => [number, number, number, number];
|
|
1874
|
+
readonly boolean_serialize_client_key: (a: number) => [number, number, number, number];
|
|
1875
|
+
readonly boolean_serialize_compressed_ciphertext: (a: number) => [number, number, number, number];
|
|
1876
|
+
readonly boolean_serialize_compressed_server_key: (a: number) => [number, number, number, number];
|
|
1877
|
+
readonly boolean_serialize_public_key: (a: number) => [number, number, number, number];
|
|
1878
|
+
readonly boolean_trivial_encrypt: (a: number) => number;
|
|
1879
|
+
readonly boolean_try_new_t_uniform: (a: number) => [number, number, number];
|
|
1880
|
+
readonly init_panic_hook: () => void;
|
|
1881
|
+
readonly set_server_key: (a: number) => [number, number];
|
|
1882
|
+
readonly tfheclientkey_deserialize: (a: number, b: number) => [number, number, number];
|
|
1883
|
+
readonly tfheclientkey_generate: (a: number) => [number, number, number];
|
|
1884
|
+
readonly tfheclientkey_generate_with_seed: (a: number, b: any) => [number, number, number];
|
|
1885
|
+
readonly tfheclientkey_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
1886
|
+
readonly tfheclientkey_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
1887
|
+
readonly tfheclientkey_serialize: (a: number) => [number, number, number, number];
|
|
1888
|
+
readonly tfhecompactpublickey_deserialize: (a: number, b: number) => [number, number, number];
|
|
1889
|
+
readonly tfhecompactpublickey_new: (a: number) => [number, number, number];
|
|
1890
|
+
readonly tfhecompactpublickey_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
1891
|
+
readonly tfhecompactpublickey_safe_deserialize_conformant: (a: number, b: number, c: bigint, d: number) => [number, number, number];
|
|
1892
|
+
readonly tfhecompactpublickey_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
1893
|
+
readonly tfhecompactpublickey_serialize: (a: number) => [number, number, number, number];
|
|
1894
|
+
readonly tfhecompressedcompactpublickey_decompress: (a: number) => [number, number, number];
|
|
1895
|
+
readonly tfhecompressedcompactpublickey_deserialize: (a: number, b: number) => [number, number, number];
|
|
1896
|
+
readonly tfhecompressedcompactpublickey_new: (a: number) => [number, number, number];
|
|
1897
|
+
readonly tfhecompressedcompactpublickey_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
1898
|
+
readonly tfhecompressedcompactpublickey_safe_deserialize_conformant: (a: number, b: number, c: bigint, d: number) => [number, number, number];
|
|
1899
|
+
readonly tfhecompressedcompactpublickey_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
1900
|
+
readonly tfhecompressedcompactpublickey_serialize: (a: number) => [number, number, number, number];
|
|
1901
|
+
readonly tfhecompressedpublickey_decompress: (a: number) => [number, number, number];
|
|
1902
|
+
readonly tfhecompressedpublickey_deserialize: (a: number, b: number) => [number, number, number];
|
|
1903
|
+
readonly tfhecompressedpublickey_new: (a: number) => [number, number, number];
|
|
1904
|
+
readonly tfhecompressedpublickey_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
1905
|
+
readonly tfhecompressedpublickey_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
1906
|
+
readonly tfhecompressedpublickey_serialize: (a: number) => [number, number, number, number];
|
|
1907
|
+
readonly tfhecompressedserverkey_deserialize: (a: number, b: number) => [number, number, number];
|
|
1908
|
+
readonly tfhecompressedserverkey_new: (a: number) => [number, number, number];
|
|
1909
|
+
readonly tfhecompressedserverkey_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
1910
|
+
readonly tfhecompressedserverkey_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
1911
|
+
readonly tfhecompressedserverkey_serialize: (a: number) => [number, number, number, number];
|
|
1912
|
+
readonly tfhepublickey_deserialize: (a: number, b: number) => [number, number, number];
|
|
1913
|
+
readonly tfhepublickey_new: (a: number) => [number, number, number];
|
|
1914
|
+
readonly tfhepublickey_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
1915
|
+
readonly tfhepublickey_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
1916
|
+
readonly tfhepublickey_serialize: (a: number) => [number, number, number, number];
|
|
1917
|
+
readonly tfheserverkey_new: (a: number) => [number, number, number];
|
|
1918
|
+
readonly __wbg_compactciphertextlist_free: (a: number, b: number) => void;
|
|
1919
|
+
readonly __wbg_compactciphertextlistbuilder_free: (a: number, b: number) => void;
|
|
1920
|
+
readonly __wbg_compactciphertextlistexpander_free: (a: number, b: number) => void;
|
|
1921
|
+
readonly __wbg_compressedfhebool_free: (a: number, b: number) => void;
|
|
1922
|
+
readonly __wbg_compressedfheint1024_free: (a: number, b: number) => void;
|
|
1923
|
+
readonly __wbg_fhebool_free: (a: number, b: number) => void;
|
|
1924
|
+
readonly __wbg_fheint1024_free: (a: number, b: number) => void;
|
|
3284
1925
|
readonly __wbg_tfheconfig_free: (a: number, b: number) => void;
|
|
3285
|
-
readonly __wbg_tfheconfigbuilder_free: (a: number, b: number) => void;
|
|
3286
|
-
readonly __wbg_tfhepublickey_free: (a: number, b: number) => void;
|
|
3287
|
-
readonly __wbg_tfheserverkey_free: (a: number, b: number) => void;
|
|
3288
1926
|
readonly compactciphertextlist_builder: (a: number) => [number, number, number];
|
|
3289
1927
|
readonly compactciphertextlist_deserialize: (a: number, b: number) => [number, number, number];
|
|
3290
1928
|
readonly compactciphertextlist_expand: (a: number) => [number, number, number];
|
|
@@ -3296,183 +1934,74 @@ export interface InitOutput {
|
|
|
3296
1934
|
readonly compactciphertextlist_serialize: (a: number) => [number, number, number, number];
|
|
3297
1935
|
readonly compactciphertextlistbuilder_build: (a: number) => [number, number, number];
|
|
3298
1936
|
readonly compactciphertextlistbuilder_build_packed: (a: number) => [number, number, number];
|
|
3299
|
-
readonly compactciphertextlistbuilder_build_with_proof_packed: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
3300
1937
|
readonly compactciphertextlistbuilder_push_boolean: (a: number, b: number) => [number, number];
|
|
3301
1938
|
readonly compactciphertextlistbuilder_push_i10: (a: number, b: number) => [number, number];
|
|
3302
1939
|
readonly compactciphertextlistbuilder_push_i1024: (a: number, b: any) => [number, number];
|
|
3303
|
-
readonly compactciphertextlistbuilder_push_i104: (a: number, b: any) => [number, number];
|
|
3304
|
-
readonly compactciphertextlistbuilder_push_i112: (a: number, b: any) => [number, number];
|
|
3305
1940
|
readonly compactciphertextlistbuilder_push_i12: (a: number, b: number) => [number, number];
|
|
3306
|
-
readonly compactciphertextlistbuilder_push_i120: (a: number, b: any) => [number, number];
|
|
3307
1941
|
readonly compactciphertextlistbuilder_push_i128: (a: number, b: any) => [number, number];
|
|
3308
|
-
readonly compactciphertextlistbuilder_push_i136: (a: number, b: any) => [number, number];
|
|
3309
1942
|
readonly compactciphertextlistbuilder_push_i14: (a: number, b: number) => [number, number];
|
|
3310
|
-
readonly compactciphertextlistbuilder_push_i144: (a: number, b: any) => [number, number];
|
|
3311
|
-
readonly compactciphertextlistbuilder_push_i152: (a: number, b: any) => [number, number];
|
|
3312
1943
|
readonly compactciphertextlistbuilder_push_i16: (a: number, b: number) => [number, number];
|
|
3313
1944
|
readonly compactciphertextlistbuilder_push_i160: (a: number, b: any) => [number, number];
|
|
3314
|
-
readonly compactciphertextlistbuilder_push_i168: (a: number, b: any) => [number, number];
|
|
3315
|
-
readonly compactciphertextlistbuilder_push_i176: (a: number, b: any) => [number, number];
|
|
3316
|
-
readonly compactciphertextlistbuilder_push_i184: (a: number, b: any) => [number, number];
|
|
3317
|
-
readonly compactciphertextlistbuilder_push_i192: (a: number, b: any) => [number, number];
|
|
3318
1945
|
readonly compactciphertextlistbuilder_push_i2: (a: number, b: number) => [number, number];
|
|
3319
|
-
readonly compactciphertextlistbuilder_push_i200: (a: number, b: any) => [number, number];
|
|
3320
1946
|
readonly compactciphertextlistbuilder_push_i2048: (a: number, b: any) => [number, number];
|
|
3321
|
-
readonly compactciphertextlistbuilder_push_i208: (a: number, b: any) => [number, number];
|
|
3322
|
-
readonly compactciphertextlistbuilder_push_i216: (a: number, b: any) => [number, number];
|
|
3323
|
-
readonly compactciphertextlistbuilder_push_i224: (a: number, b: any) => [number, number];
|
|
3324
|
-
readonly compactciphertextlistbuilder_push_i232: (a: number, b: any) => [number, number];
|
|
3325
|
-
readonly compactciphertextlistbuilder_push_i24: (a: number, b: number) => [number, number];
|
|
3326
|
-
readonly compactciphertextlistbuilder_push_i240: (a: number, b: any) => [number, number];
|
|
3327
|
-
readonly compactciphertextlistbuilder_push_i248: (a: number, b: any) => [number, number];
|
|
3328
1947
|
readonly compactciphertextlistbuilder_push_i256: (a: number, b: any) => [number, number];
|
|
3329
1948
|
readonly compactciphertextlistbuilder_push_i32: (a: number, b: number) => [number, number];
|
|
3330
1949
|
readonly compactciphertextlistbuilder_push_i4: (a: number, b: number) => [number, number];
|
|
3331
|
-
readonly compactciphertextlistbuilder_push_i40: (a: number, b: bigint) => [number, number];
|
|
3332
|
-
readonly compactciphertextlistbuilder_push_i48: (a: number, b: bigint) => [number, number];
|
|
3333
1950
|
readonly compactciphertextlistbuilder_push_i512: (a: number, b: any) => [number, number];
|
|
3334
|
-
readonly compactciphertextlistbuilder_push_i56: (a: number, b: bigint) => [number, number];
|
|
3335
1951
|
readonly compactciphertextlistbuilder_push_i6: (a: number, b: number) => [number, number];
|
|
3336
1952
|
readonly compactciphertextlistbuilder_push_i64: (a: number, b: bigint) => [number, number];
|
|
3337
|
-
readonly compactciphertextlistbuilder_push_i72: (a: number, b: any) => [number, number];
|
|
3338
1953
|
readonly compactciphertextlistbuilder_push_i8: (a: number, b: number) => [number, number];
|
|
3339
|
-
readonly compactciphertextlistbuilder_push_i80: (a: number, b: any) => [number, number];
|
|
3340
|
-
readonly compactciphertextlistbuilder_push_i88: (a: number, b: any) => [number, number];
|
|
3341
|
-
readonly compactciphertextlistbuilder_push_i96: (a: number, b: any) => [number, number];
|
|
3342
1954
|
readonly compactciphertextlistbuilder_push_u10: (a: number, b: number) => [number, number];
|
|
3343
1955
|
readonly compactciphertextlistbuilder_push_u1024: (a: number, b: any) => [number, number];
|
|
3344
|
-
readonly compactciphertextlistbuilder_push_u104: (a: number, b: any) => [number, number];
|
|
3345
|
-
readonly compactciphertextlistbuilder_push_u112: (a: number, b: any) => [number, number];
|
|
3346
1956
|
readonly compactciphertextlistbuilder_push_u12: (a: number, b: number) => [number, number];
|
|
3347
|
-
readonly compactciphertextlistbuilder_push_u120: (a: number, b: any) => [number, number];
|
|
3348
1957
|
readonly compactciphertextlistbuilder_push_u128: (a: number, b: any) => [number, number];
|
|
3349
|
-
readonly compactciphertextlistbuilder_push_u136: (a: number, b: any) => [number, number];
|
|
3350
1958
|
readonly compactciphertextlistbuilder_push_u14: (a: number, b: number) => [number, number];
|
|
3351
|
-
readonly compactciphertextlistbuilder_push_u144: (a: number, b: any) => [number, number];
|
|
3352
|
-
readonly compactciphertextlistbuilder_push_u152: (a: number, b: any) => [number, number];
|
|
3353
1959
|
readonly compactciphertextlistbuilder_push_u16: (a: number, b: number) => [number, number];
|
|
3354
1960
|
readonly compactciphertextlistbuilder_push_u160: (a: number, b: any) => [number, number];
|
|
3355
|
-
readonly compactciphertextlistbuilder_push_u168: (a: number, b: any) => [number, number];
|
|
3356
|
-
readonly compactciphertextlistbuilder_push_u176: (a: number, b: any) => [number, number];
|
|
3357
|
-
readonly compactciphertextlistbuilder_push_u184: (a: number, b: any) => [number, number];
|
|
3358
|
-
readonly compactciphertextlistbuilder_push_u192: (a: number, b: any) => [number, number];
|
|
3359
1961
|
readonly compactciphertextlistbuilder_push_u2: (a: number, b: number) => [number, number];
|
|
3360
|
-
readonly compactciphertextlistbuilder_push_u200: (a: number, b: any) => [number, number];
|
|
3361
1962
|
readonly compactciphertextlistbuilder_push_u2048: (a: number, b: any) => [number, number];
|
|
3362
|
-
readonly compactciphertextlistbuilder_push_u208: (a: number, b: any) => [number, number];
|
|
3363
|
-
readonly compactciphertextlistbuilder_push_u216: (a: number, b: any) => [number, number];
|
|
3364
|
-
readonly compactciphertextlistbuilder_push_u224: (a: number, b: any) => [number, number];
|
|
3365
|
-
readonly compactciphertextlistbuilder_push_u232: (a: number, b: any) => [number, number];
|
|
3366
|
-
readonly compactciphertextlistbuilder_push_u24: (a: number, b: number) => [number, number];
|
|
3367
|
-
readonly compactciphertextlistbuilder_push_u240: (a: number, b: any) => [number, number];
|
|
3368
|
-
readonly compactciphertextlistbuilder_push_u248: (a: number, b: any) => [number, number];
|
|
3369
1963
|
readonly compactciphertextlistbuilder_push_u256: (a: number, b: any) => [number, number];
|
|
3370
1964
|
readonly compactciphertextlistbuilder_push_u32: (a: number, b: number) => [number, number];
|
|
3371
1965
|
readonly compactciphertextlistbuilder_push_u4: (a: number, b: number) => [number, number];
|
|
3372
|
-
readonly compactciphertextlistbuilder_push_u40: (a: number, b: bigint) => [number, number];
|
|
3373
|
-
readonly compactciphertextlistbuilder_push_u48: (a: number, b: bigint) => [number, number];
|
|
3374
1966
|
readonly compactciphertextlistbuilder_push_u512: (a: number, b: any) => [number, number];
|
|
3375
|
-
readonly compactciphertextlistbuilder_push_u56: (a: number, b: bigint) => [number, number];
|
|
3376
1967
|
readonly compactciphertextlistbuilder_push_u6: (a: number, b: number) => [number, number];
|
|
3377
1968
|
readonly compactciphertextlistbuilder_push_u64: (a: number, b: bigint) => [number, number];
|
|
3378
|
-
readonly compactciphertextlistbuilder_push_u72: (a: number, b: any) => [number, number];
|
|
3379
1969
|
readonly compactciphertextlistbuilder_push_u8: (a: number, b: number) => [number, number];
|
|
3380
|
-
readonly compactciphertextlistbuilder_push_u80: (a: number, b: any) => [number, number];
|
|
3381
|
-
readonly compactciphertextlistbuilder_push_u88: (a: number, b: any) => [number, number];
|
|
3382
|
-
readonly compactciphertextlistbuilder_push_u96: (a: number, b: any) => [number, number];
|
|
3383
1970
|
readonly compactciphertextlistexpander_get_bool: (a: number, b: number) => [number, number, number];
|
|
3384
1971
|
readonly compactciphertextlistexpander_get_int10: (a: number, b: number) => [number, number, number];
|
|
3385
1972
|
readonly compactciphertextlistexpander_get_int1024: (a: number, b: number) => [number, number, number];
|
|
3386
|
-
readonly compactciphertextlistexpander_get_int104: (a: number, b: number) => [number, number, number];
|
|
3387
|
-
readonly compactciphertextlistexpander_get_int112: (a: number, b: number) => [number, number, number];
|
|
3388
1973
|
readonly compactciphertextlistexpander_get_int12: (a: number, b: number) => [number, number, number];
|
|
3389
|
-
readonly compactciphertextlistexpander_get_int120: (a: number, b: number) => [number, number, number];
|
|
3390
1974
|
readonly compactciphertextlistexpander_get_int128: (a: number, b: number) => [number, number, number];
|
|
3391
|
-
readonly compactciphertextlistexpander_get_int136: (a: number, b: number) => [number, number, number];
|
|
3392
1975
|
readonly compactciphertextlistexpander_get_int14: (a: number, b: number) => [number, number, number];
|
|
3393
|
-
readonly compactciphertextlistexpander_get_int144: (a: number, b: number) => [number, number, number];
|
|
3394
|
-
readonly compactciphertextlistexpander_get_int152: (a: number, b: number) => [number, number, number];
|
|
3395
1976
|
readonly compactciphertextlistexpander_get_int16: (a: number, b: number) => [number, number, number];
|
|
3396
1977
|
readonly compactciphertextlistexpander_get_int160: (a: number, b: number) => [number, number, number];
|
|
3397
|
-
readonly compactciphertextlistexpander_get_int168: (a: number, b: number) => [number, number, number];
|
|
3398
|
-
readonly compactciphertextlistexpander_get_int176: (a: number, b: number) => [number, number, number];
|
|
3399
|
-
readonly compactciphertextlistexpander_get_int184: (a: number, b: number) => [number, number, number];
|
|
3400
|
-
readonly compactciphertextlistexpander_get_int192: (a: number, b: number) => [number, number, number];
|
|
3401
1978
|
readonly compactciphertextlistexpander_get_int2: (a: number, b: number) => [number, number, number];
|
|
3402
|
-
readonly compactciphertextlistexpander_get_int200: (a: number, b: number) => [number, number, number];
|
|
3403
1979
|
readonly compactciphertextlistexpander_get_int2048: (a: number, b: number) => [number, number, number];
|
|
3404
|
-
readonly compactciphertextlistexpander_get_int208: (a: number, b: number) => [number, number, number];
|
|
3405
|
-
readonly compactciphertextlistexpander_get_int216: (a: number, b: number) => [number, number, number];
|
|
3406
|
-
readonly compactciphertextlistexpander_get_int224: (a: number, b: number) => [number, number, number];
|
|
3407
|
-
readonly compactciphertextlistexpander_get_int232: (a: number, b: number) => [number, number, number];
|
|
3408
|
-
readonly compactciphertextlistexpander_get_int24: (a: number, b: number) => [number, number, number];
|
|
3409
|
-
readonly compactciphertextlistexpander_get_int240: (a: number, b: number) => [number, number, number];
|
|
3410
|
-
readonly compactciphertextlistexpander_get_int248: (a: number, b: number) => [number, number, number];
|
|
3411
1980
|
readonly compactciphertextlistexpander_get_int256: (a: number, b: number) => [number, number, number];
|
|
3412
1981
|
readonly compactciphertextlistexpander_get_int32: (a: number, b: number) => [number, number, number];
|
|
3413
1982
|
readonly compactciphertextlistexpander_get_int4: (a: number, b: number) => [number, number, number];
|
|
3414
|
-
readonly compactciphertextlistexpander_get_int40: (a: number, b: number) => [number, number, number];
|
|
3415
|
-
readonly compactciphertextlistexpander_get_int48: (a: number, b: number) => [number, number, number];
|
|
3416
1983
|
readonly compactciphertextlistexpander_get_int512: (a: number, b: number) => [number, number, number];
|
|
3417
|
-
readonly compactciphertextlistexpander_get_int56: (a: number, b: number) => [number, number, number];
|
|
3418
1984
|
readonly compactciphertextlistexpander_get_int6: (a: number, b: number) => [number, number, number];
|
|
3419
1985
|
readonly compactciphertextlistexpander_get_int64: (a: number, b: number) => [number, number, number];
|
|
3420
|
-
readonly compactciphertextlistexpander_get_int72: (a: number, b: number) => [number, number, number];
|
|
3421
1986
|
readonly compactciphertextlistexpander_get_int8: (a: number, b: number) => [number, number, number];
|
|
3422
|
-
readonly compactciphertextlistexpander_get_int80: (a: number, b: number) => [number, number, number];
|
|
3423
|
-
readonly compactciphertextlistexpander_get_int88: (a: number, b: number) => [number, number, number];
|
|
3424
|
-
readonly compactciphertextlistexpander_get_int96: (a: number, b: number) => [number, number, number];
|
|
3425
1987
|
readonly compactciphertextlistexpander_get_kind_of: (a: number, b: number) => number;
|
|
3426
1988
|
readonly compactciphertextlistexpander_get_uint10: (a: number, b: number) => [number, number, number];
|
|
3427
1989
|
readonly compactciphertextlistexpander_get_uint1024: (a: number, b: number) => [number, number, number];
|
|
3428
|
-
readonly compactciphertextlistexpander_get_uint104: (a: number, b: number) => [number, number, number];
|
|
3429
|
-
readonly compactciphertextlistexpander_get_uint112: (a: number, b: number) => [number, number, number];
|
|
3430
1990
|
readonly compactciphertextlistexpander_get_uint12: (a: number, b: number) => [number, number, number];
|
|
3431
|
-
readonly compactciphertextlistexpander_get_uint120: (a: number, b: number) => [number, number, number];
|
|
3432
1991
|
readonly compactciphertextlistexpander_get_uint128: (a: number, b: number) => [number, number, number];
|
|
3433
|
-
readonly compactciphertextlistexpander_get_uint136: (a: number, b: number) => [number, number, number];
|
|
3434
1992
|
readonly compactciphertextlistexpander_get_uint14: (a: number, b: number) => [number, number, number];
|
|
3435
|
-
readonly compactciphertextlistexpander_get_uint144: (a: number, b: number) => [number, number, number];
|
|
3436
|
-
readonly compactciphertextlistexpander_get_uint152: (a: number, b: number) => [number, number, number];
|
|
3437
1993
|
readonly compactciphertextlistexpander_get_uint16: (a: number, b: number) => [number, number, number];
|
|
3438
1994
|
readonly compactciphertextlistexpander_get_uint160: (a: number, b: number) => [number, number, number];
|
|
3439
|
-
readonly compactciphertextlistexpander_get_uint168: (a: number, b: number) => [number, number, number];
|
|
3440
|
-
readonly compactciphertextlistexpander_get_uint176: (a: number, b: number) => [number, number, number];
|
|
3441
|
-
readonly compactciphertextlistexpander_get_uint184: (a: number, b: number) => [number, number, number];
|
|
3442
|
-
readonly compactciphertextlistexpander_get_uint192: (a: number, b: number) => [number, number, number];
|
|
3443
1995
|
readonly compactciphertextlistexpander_get_uint2: (a: number, b: number) => [number, number, number];
|
|
3444
|
-
readonly compactciphertextlistexpander_get_uint200: (a: number, b: number) => [number, number, number];
|
|
3445
1996
|
readonly compactciphertextlistexpander_get_uint2048: (a: number, b: number) => [number, number, number];
|
|
3446
|
-
readonly compactciphertextlistexpander_get_uint208: (a: number, b: number) => [number, number, number];
|
|
3447
|
-
readonly compactciphertextlistexpander_get_uint216: (a: number, b: number) => [number, number, number];
|
|
3448
|
-
readonly compactciphertextlistexpander_get_uint224: (a: number, b: number) => [number, number, number];
|
|
3449
|
-
readonly compactciphertextlistexpander_get_uint232: (a: number, b: number) => [number, number, number];
|
|
3450
|
-
readonly compactciphertextlistexpander_get_uint24: (a: number, b: number) => [number, number, number];
|
|
3451
|
-
readonly compactciphertextlistexpander_get_uint240: (a: number, b: number) => [number, number, number];
|
|
3452
|
-
readonly compactciphertextlistexpander_get_uint248: (a: number, b: number) => [number, number, number];
|
|
3453
|
-
readonly compactciphertextlistexpander_get_uint256: (a: number, b: number) => [number, number, number];
|
|
3454
1997
|
readonly compactciphertextlistexpander_get_uint32: (a: number, b: number) => [number, number, number];
|
|
3455
1998
|
readonly compactciphertextlistexpander_get_uint4: (a: number, b: number) => [number, number, number];
|
|
3456
|
-
readonly compactciphertextlistexpander_get_uint40: (a: number, b: number) => [number, number, number];
|
|
3457
|
-
readonly compactciphertextlistexpander_get_uint48: (a: number, b: number) => [number, number, number];
|
|
3458
1999
|
readonly compactciphertextlistexpander_get_uint512: (a: number, b: number) => [number, number, number];
|
|
3459
|
-
readonly compactciphertextlistexpander_get_uint56: (a: number, b: number) => [number, number, number];
|
|
3460
2000
|
readonly compactciphertextlistexpander_get_uint6: (a: number, b: number) => [number, number, number];
|
|
3461
2001
|
readonly compactciphertextlistexpander_get_uint64: (a: number, b: number) => [number, number, number];
|
|
3462
|
-
readonly compactciphertextlistexpander_get_uint72: (a: number, b: number) => [number, number, number];
|
|
3463
2002
|
readonly compactciphertextlistexpander_get_uint8: (a: number, b: number) => [number, number, number];
|
|
3464
|
-
readonly compactciphertextlistexpander_get_uint80: (a: number, b: number) => [number, number, number];
|
|
3465
|
-
readonly compactciphertextlistexpander_get_uint88: (a: number, b: number) => [number, number, number];
|
|
3466
|
-
readonly compactciphertextlistexpander_get_uint96: (a: number, b: number) => [number, number, number];
|
|
3467
2003
|
readonly compactciphertextlistexpander_is_empty: (a: number) => number;
|
|
3468
2004
|
readonly compactciphertextlistexpander_len: (a: number) => number;
|
|
3469
|
-
readonly compactpkecrs_deserialize: (a: number, b: number) => [number, number, number];
|
|
3470
|
-
readonly compactpkecrs_deserialize_from_public_params: (a: number, b: number) => [number, number, number];
|
|
3471
|
-
readonly compactpkecrs_from_config: (a: number, b: number) => [number, number, number];
|
|
3472
|
-
readonly compactpkecrs_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3473
|
-
readonly compactpkecrs_safe_deserialize_from_public_params: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3474
|
-
readonly compactpkecrs_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3475
|
-
readonly compactpkecrs_serialize: (a: number, b: number) => [number, number, number, number];
|
|
3476
2005
|
readonly compressedfhebool_decompress: (a: number) => [number, number, number];
|
|
3477
2006
|
readonly compressedfhebool_deserialize: (a: number, b: number) => [number, number, number];
|
|
3478
2007
|
readonly compressedfhebool_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
@@ -3485,30 +2014,12 @@ export interface InitOutput {
|
|
|
3485
2014
|
readonly compressedfheint1024_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3486
2015
|
readonly compressedfheint1024_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3487
2016
|
readonly compressedfheint1024_serialize: (a: number) => [number, number, number, number];
|
|
3488
|
-
readonly compressedfheint104_decompress: (a: number) => [number, number, number];
|
|
3489
|
-
readonly compressedfheint104_deserialize: (a: number, b: number) => [number, number, number];
|
|
3490
|
-
readonly compressedfheint104_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3491
|
-
readonly compressedfheint104_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3492
|
-
readonly compressedfheint104_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3493
|
-
readonly compressedfheint104_serialize: (a: number) => [number, number, number, number];
|
|
3494
2017
|
readonly compressedfheint10_decompress: (a: number) => [number, number, number];
|
|
3495
2018
|
readonly compressedfheint10_deserialize: (a: number, b: number) => [number, number, number];
|
|
3496
2019
|
readonly compressedfheint10_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
3497
2020
|
readonly compressedfheint10_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3498
2021
|
readonly compressedfheint10_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3499
2022
|
readonly compressedfheint10_serialize: (a: number) => [number, number, number, number];
|
|
3500
|
-
readonly compressedfheint112_decompress: (a: number) => [number, number, number];
|
|
3501
|
-
readonly compressedfheint112_deserialize: (a: number, b: number) => [number, number, number];
|
|
3502
|
-
readonly compressedfheint112_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3503
|
-
readonly compressedfheint112_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3504
|
-
readonly compressedfheint112_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3505
|
-
readonly compressedfheint112_serialize: (a: number) => [number, number, number, number];
|
|
3506
|
-
readonly compressedfheint120_decompress: (a: number) => [number, number, number];
|
|
3507
|
-
readonly compressedfheint120_deserialize: (a: number, b: number) => [number, number, number];
|
|
3508
|
-
readonly compressedfheint120_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3509
|
-
readonly compressedfheint120_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3510
|
-
readonly compressedfheint120_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3511
|
-
readonly compressedfheint120_serialize: (a: number) => [number, number, number, number];
|
|
3512
2023
|
readonly compressedfheint128_decompress: (a: number) => [number, number, number];
|
|
3513
2024
|
readonly compressedfheint128_deserialize: (a: number, b: number) => [number, number, number];
|
|
3514
2025
|
readonly compressedfheint128_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
@@ -3521,120 +2032,30 @@ export interface InitOutput {
|
|
|
3521
2032
|
readonly compressedfheint12_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3522
2033
|
readonly compressedfheint12_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3523
2034
|
readonly compressedfheint12_serialize: (a: number) => [number, number, number, number];
|
|
3524
|
-
readonly compressedfheint136_decompress: (a: number) => [number, number, number];
|
|
3525
|
-
readonly compressedfheint136_deserialize: (a: number, b: number) => [number, number, number];
|
|
3526
|
-
readonly compressedfheint136_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3527
|
-
readonly compressedfheint136_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3528
|
-
readonly compressedfheint136_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3529
|
-
readonly compressedfheint136_serialize: (a: number) => [number, number, number, number];
|
|
3530
|
-
readonly compressedfheint144_decompress: (a: number) => [number, number, number];
|
|
3531
|
-
readonly compressedfheint144_deserialize: (a: number, b: number) => [number, number, number];
|
|
3532
|
-
readonly compressedfheint144_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3533
|
-
readonly compressedfheint144_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3534
|
-
readonly compressedfheint144_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3535
|
-
readonly compressedfheint144_serialize: (a: number) => [number, number, number, number];
|
|
3536
2035
|
readonly compressedfheint14_decompress: (a: number) => [number, number, number];
|
|
3537
2036
|
readonly compressedfheint14_deserialize: (a: number, b: number) => [number, number, number];
|
|
3538
2037
|
readonly compressedfheint14_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
3539
2038
|
readonly compressedfheint14_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3540
2039
|
readonly compressedfheint14_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3541
2040
|
readonly compressedfheint14_serialize: (a: number) => [number, number, number, number];
|
|
3542
|
-
readonly compressedfheint152_decompress: (a: number) => [number, number, number];
|
|
3543
|
-
readonly compressedfheint152_deserialize: (a: number, b: number) => [number, number, number];
|
|
3544
|
-
readonly compressedfheint152_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3545
|
-
readonly compressedfheint152_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3546
|
-
readonly compressedfheint152_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3547
|
-
readonly compressedfheint152_serialize: (a: number) => [number, number, number, number];
|
|
3548
2041
|
readonly compressedfheint160_decompress: (a: number) => [number, number, number];
|
|
3549
2042
|
readonly compressedfheint160_deserialize: (a: number, b: number) => [number, number, number];
|
|
3550
2043
|
readonly compressedfheint160_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3551
2044
|
readonly compressedfheint160_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3552
2045
|
readonly compressedfheint160_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3553
2046
|
readonly compressedfheint160_serialize: (a: number) => [number, number, number, number];
|
|
3554
|
-
readonly compressedfheint168_decompress: (a: number) => [number, number, number];
|
|
3555
|
-
readonly compressedfheint168_deserialize: (a: number, b: number) => [number, number, number];
|
|
3556
|
-
readonly compressedfheint168_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3557
|
-
readonly compressedfheint168_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3558
|
-
readonly compressedfheint168_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3559
|
-
readonly compressedfheint168_serialize: (a: number) => [number, number, number, number];
|
|
3560
2047
|
readonly compressedfheint16_decompress: (a: number) => [number, number, number];
|
|
3561
2048
|
readonly compressedfheint16_deserialize: (a: number, b: number) => [number, number, number];
|
|
3562
2049
|
readonly compressedfheint16_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
3563
2050
|
readonly compressedfheint16_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3564
2051
|
readonly compressedfheint16_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3565
2052
|
readonly compressedfheint16_serialize: (a: number) => [number, number, number, number];
|
|
3566
|
-
readonly compressedfheint176_decompress: (a: number) => [number, number, number];
|
|
3567
|
-
readonly compressedfheint176_deserialize: (a: number, b: number) => [number, number, number];
|
|
3568
|
-
readonly compressedfheint176_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3569
|
-
readonly compressedfheint176_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3570
|
-
readonly compressedfheint176_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3571
|
-
readonly compressedfheint176_serialize: (a: number) => [number, number, number, number];
|
|
3572
|
-
readonly compressedfheint184_decompress: (a: number) => [number, number, number];
|
|
3573
|
-
readonly compressedfheint184_deserialize: (a: number, b: number) => [number, number, number];
|
|
3574
|
-
readonly compressedfheint184_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3575
|
-
readonly compressedfheint184_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3576
|
-
readonly compressedfheint184_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3577
|
-
readonly compressedfheint184_serialize: (a: number) => [number, number, number, number];
|
|
3578
|
-
readonly compressedfheint192_decompress: (a: number) => [number, number, number];
|
|
3579
|
-
readonly compressedfheint192_deserialize: (a: number, b: number) => [number, number, number];
|
|
3580
|
-
readonly compressedfheint192_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3581
|
-
readonly compressedfheint192_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3582
|
-
readonly compressedfheint192_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3583
|
-
readonly compressedfheint192_serialize: (a: number) => [number, number, number, number];
|
|
3584
|
-
readonly compressedfheint200_decompress: (a: number) => [number, number, number];
|
|
3585
|
-
readonly compressedfheint200_deserialize: (a: number, b: number) => [number, number, number];
|
|
3586
|
-
readonly compressedfheint200_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3587
|
-
readonly compressedfheint200_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3588
|
-
readonly compressedfheint200_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3589
|
-
readonly compressedfheint200_serialize: (a: number) => [number, number, number, number];
|
|
3590
2053
|
readonly compressedfheint2048_decompress: (a: number) => [number, number, number];
|
|
3591
2054
|
readonly compressedfheint2048_deserialize: (a: number, b: number) => [number, number, number];
|
|
3592
2055
|
readonly compressedfheint2048_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3593
2056
|
readonly compressedfheint2048_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3594
2057
|
readonly compressedfheint2048_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3595
2058
|
readonly compressedfheint2048_serialize: (a: number) => [number, number, number, number];
|
|
3596
|
-
readonly compressedfheint208_decompress: (a: number) => [number, number, number];
|
|
3597
|
-
readonly compressedfheint208_deserialize: (a: number, b: number) => [number, number, number];
|
|
3598
|
-
readonly compressedfheint208_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3599
|
-
readonly compressedfheint208_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3600
|
-
readonly compressedfheint208_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3601
|
-
readonly compressedfheint208_serialize: (a: number) => [number, number, number, number];
|
|
3602
|
-
readonly compressedfheint216_decompress: (a: number) => [number, number, number];
|
|
3603
|
-
readonly compressedfheint216_deserialize: (a: number, b: number) => [number, number, number];
|
|
3604
|
-
readonly compressedfheint216_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3605
|
-
readonly compressedfheint216_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3606
|
-
readonly compressedfheint216_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3607
|
-
readonly compressedfheint216_serialize: (a: number) => [number, number, number, number];
|
|
3608
|
-
readonly compressedfheint224_decompress: (a: number) => [number, number, number];
|
|
3609
|
-
readonly compressedfheint224_deserialize: (a: number, b: number) => [number, number, number];
|
|
3610
|
-
readonly compressedfheint224_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3611
|
-
readonly compressedfheint224_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3612
|
-
readonly compressedfheint224_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3613
|
-
readonly compressedfheint224_serialize: (a: number) => [number, number, number, number];
|
|
3614
|
-
readonly compressedfheint232_decompress: (a: number) => [number, number, number];
|
|
3615
|
-
readonly compressedfheint232_deserialize: (a: number, b: number) => [number, number, number];
|
|
3616
|
-
readonly compressedfheint232_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3617
|
-
readonly compressedfheint232_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3618
|
-
readonly compressedfheint232_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3619
|
-
readonly compressedfheint232_serialize: (a: number) => [number, number, number, number];
|
|
3620
|
-
readonly compressedfheint240_decompress: (a: number) => [number, number, number];
|
|
3621
|
-
readonly compressedfheint240_deserialize: (a: number, b: number) => [number, number, number];
|
|
3622
|
-
readonly compressedfheint240_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3623
|
-
readonly compressedfheint240_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3624
|
-
readonly compressedfheint240_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3625
|
-
readonly compressedfheint240_serialize: (a: number) => [number, number, number, number];
|
|
3626
|
-
readonly compressedfheint248_decompress: (a: number) => [number, number, number];
|
|
3627
|
-
readonly compressedfheint248_deserialize: (a: number, b: number) => [number, number, number];
|
|
3628
|
-
readonly compressedfheint248_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3629
|
-
readonly compressedfheint248_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3630
|
-
readonly compressedfheint248_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3631
|
-
readonly compressedfheint248_serialize: (a: number) => [number, number, number, number];
|
|
3632
|
-
readonly compressedfheint24_decompress: (a: number) => [number, number, number];
|
|
3633
|
-
readonly compressedfheint24_deserialize: (a: number, b: number) => [number, number, number];
|
|
3634
|
-
readonly compressedfheint24_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
3635
|
-
readonly compressedfheint24_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3636
|
-
readonly compressedfheint24_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3637
|
-
readonly compressedfheint24_serialize: (a: number) => [number, number, number, number];
|
|
3638
2059
|
readonly compressedfheint256_decompress: (a: number) => [number, number, number];
|
|
3639
2060
|
readonly compressedfheint256_deserialize: (a: number, b: number) => [number, number, number];
|
|
3640
2061
|
readonly compressedfheint256_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
@@ -3653,18 +2074,6 @@ export interface InitOutput {
|
|
|
3653
2074
|
readonly compressedfheint32_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3654
2075
|
readonly compressedfheint32_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3655
2076
|
readonly compressedfheint32_serialize: (a: number) => [number, number, number, number];
|
|
3656
|
-
readonly compressedfheint40_decompress: (a: number) => [number, number, number];
|
|
3657
|
-
readonly compressedfheint40_deserialize: (a: number, b: number) => [number, number, number];
|
|
3658
|
-
readonly compressedfheint40_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
3659
|
-
readonly compressedfheint40_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3660
|
-
readonly compressedfheint40_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3661
|
-
readonly compressedfheint40_serialize: (a: number) => [number, number, number, number];
|
|
3662
|
-
readonly compressedfheint48_decompress: (a: number) => [number, number, number];
|
|
3663
|
-
readonly compressedfheint48_deserialize: (a: number, b: number) => [number, number, number];
|
|
3664
|
-
readonly compressedfheint48_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
3665
|
-
readonly compressedfheint48_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3666
|
-
readonly compressedfheint48_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3667
|
-
readonly compressedfheint48_serialize: (a: number) => [number, number, number, number];
|
|
3668
2077
|
readonly compressedfheint4_decompress: (a: number) => [number, number, number];
|
|
3669
2078
|
readonly compressedfheint4_deserialize: (a: number, b: number) => [number, number, number];
|
|
3670
2079
|
readonly compressedfheint4_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
@@ -3677,12 +2086,6 @@ export interface InitOutput {
|
|
|
3677
2086
|
readonly compressedfheint512_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3678
2087
|
readonly compressedfheint512_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3679
2088
|
readonly compressedfheint512_serialize: (a: number) => [number, number, number, number];
|
|
3680
|
-
readonly compressedfheint56_decompress: (a: number) => [number, number, number];
|
|
3681
|
-
readonly compressedfheint56_deserialize: (a: number, b: number) => [number, number, number];
|
|
3682
|
-
readonly compressedfheint56_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
3683
|
-
readonly compressedfheint56_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3684
|
-
readonly compressedfheint56_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3685
|
-
readonly compressedfheint56_serialize: (a: number) => [number, number, number, number];
|
|
3686
2089
|
readonly compressedfheint64_decompress: (a: number) => [number, number, number];
|
|
3687
2090
|
readonly compressedfheint64_deserialize: (a: number, b: number) => [number, number, number];
|
|
3688
2091
|
readonly compressedfheint64_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
@@ -3695,66 +2098,24 @@ export interface InitOutput {
|
|
|
3695
2098
|
readonly compressedfheint6_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3696
2099
|
readonly compressedfheint6_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3697
2100
|
readonly compressedfheint6_serialize: (a: number) => [number, number, number, number];
|
|
3698
|
-
readonly compressedfheint72_decompress: (a: number) => [number, number, number];
|
|
3699
|
-
readonly compressedfheint72_deserialize: (a: number, b: number) => [number, number, number];
|
|
3700
|
-
readonly compressedfheint72_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3701
|
-
readonly compressedfheint72_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3702
|
-
readonly compressedfheint72_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3703
|
-
readonly compressedfheint72_serialize: (a: number) => [number, number, number, number];
|
|
3704
|
-
readonly compressedfheint80_decompress: (a: number) => [number, number, number];
|
|
3705
|
-
readonly compressedfheint80_deserialize: (a: number, b: number) => [number, number, number];
|
|
3706
|
-
readonly compressedfheint80_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3707
|
-
readonly compressedfheint80_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3708
|
-
readonly compressedfheint80_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3709
|
-
readonly compressedfheint80_serialize: (a: number) => [number, number, number, number];
|
|
3710
|
-
readonly compressedfheint88_decompress: (a: number) => [number, number, number];
|
|
3711
|
-
readonly compressedfheint88_deserialize: (a: number, b: number) => [number, number, number];
|
|
3712
|
-
readonly compressedfheint88_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3713
|
-
readonly compressedfheint88_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3714
|
-
readonly compressedfheint88_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3715
|
-
readonly compressedfheint88_serialize: (a: number) => [number, number, number, number];
|
|
3716
2101
|
readonly compressedfheint8_decompress: (a: number) => [number, number, number];
|
|
3717
2102
|
readonly compressedfheint8_deserialize: (a: number, b: number) => [number, number, number];
|
|
3718
2103
|
readonly compressedfheint8_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
3719
2104
|
readonly compressedfheint8_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3720
2105
|
readonly compressedfheint8_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3721
2106
|
readonly compressedfheint8_serialize: (a: number) => [number, number, number, number];
|
|
3722
|
-
readonly compressedfheint96_decompress: (a: number) => [number, number, number];
|
|
3723
|
-
readonly compressedfheint96_deserialize: (a: number, b: number) => [number, number, number];
|
|
3724
|
-
readonly compressedfheint96_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3725
|
-
readonly compressedfheint96_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3726
|
-
readonly compressedfheint96_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3727
|
-
readonly compressedfheint96_serialize: (a: number) => [number, number, number, number];
|
|
3728
2107
|
readonly compressedfheuint1024_decompress: (a: number) => [number, number, number];
|
|
3729
2108
|
readonly compressedfheuint1024_deserialize: (a: number, b: number) => [number, number, number];
|
|
3730
2109
|
readonly compressedfheuint1024_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3731
2110
|
readonly compressedfheuint1024_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3732
2111
|
readonly compressedfheuint1024_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3733
2112
|
readonly compressedfheuint1024_serialize: (a: number) => [number, number, number, number];
|
|
3734
|
-
readonly compressedfheuint104_decompress: (a: number) => [number, number, number];
|
|
3735
|
-
readonly compressedfheuint104_deserialize: (a: number, b: number) => [number, number, number];
|
|
3736
|
-
readonly compressedfheuint104_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3737
|
-
readonly compressedfheuint104_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3738
|
-
readonly compressedfheuint104_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3739
|
-
readonly compressedfheuint104_serialize: (a: number) => [number, number, number, number];
|
|
3740
2113
|
readonly compressedfheuint10_decompress: (a: number) => [number, number, number];
|
|
3741
2114
|
readonly compressedfheuint10_deserialize: (a: number, b: number) => [number, number, number];
|
|
3742
2115
|
readonly compressedfheuint10_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
3743
2116
|
readonly compressedfheuint10_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3744
2117
|
readonly compressedfheuint10_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3745
2118
|
readonly compressedfheuint10_serialize: (a: number) => [number, number, number, number];
|
|
3746
|
-
readonly compressedfheuint112_decompress: (a: number) => [number, number, number];
|
|
3747
|
-
readonly compressedfheuint112_deserialize: (a: number, b: number) => [number, number, number];
|
|
3748
|
-
readonly compressedfheuint112_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3749
|
-
readonly compressedfheuint112_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3750
|
-
readonly compressedfheuint112_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3751
|
-
readonly compressedfheuint112_serialize: (a: number) => [number, number, number, number];
|
|
3752
|
-
readonly compressedfheuint120_decompress: (a: number) => [number, number, number];
|
|
3753
|
-
readonly compressedfheuint120_deserialize: (a: number, b: number) => [number, number, number];
|
|
3754
|
-
readonly compressedfheuint120_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3755
|
-
readonly compressedfheuint120_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3756
|
-
readonly compressedfheuint120_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3757
|
-
readonly compressedfheuint120_serialize: (a: number) => [number, number, number, number];
|
|
3758
2119
|
readonly compressedfheuint128_decompress: (a: number) => [number, number, number];
|
|
3759
2120
|
readonly compressedfheuint128_deserialize: (a: number, b: number) => [number, number, number];
|
|
3760
2121
|
readonly compressedfheuint128_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
@@ -3767,120 +2128,30 @@ export interface InitOutput {
|
|
|
3767
2128
|
readonly compressedfheuint12_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3768
2129
|
readonly compressedfheuint12_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3769
2130
|
readonly compressedfheuint12_serialize: (a: number) => [number, number, number, number];
|
|
3770
|
-
readonly compressedfheuint136_decompress: (a: number) => [number, number, number];
|
|
3771
|
-
readonly compressedfheuint136_deserialize: (a: number, b: number) => [number, number, number];
|
|
3772
|
-
readonly compressedfheuint136_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3773
|
-
readonly compressedfheuint136_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3774
|
-
readonly compressedfheuint136_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3775
|
-
readonly compressedfheuint136_serialize: (a: number) => [number, number, number, number];
|
|
3776
|
-
readonly compressedfheuint144_decompress: (a: number) => [number, number, number];
|
|
3777
|
-
readonly compressedfheuint144_deserialize: (a: number, b: number) => [number, number, number];
|
|
3778
|
-
readonly compressedfheuint144_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3779
|
-
readonly compressedfheuint144_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3780
|
-
readonly compressedfheuint144_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3781
|
-
readonly compressedfheuint144_serialize: (a: number) => [number, number, number, number];
|
|
3782
2131
|
readonly compressedfheuint14_decompress: (a: number) => [number, number, number];
|
|
3783
2132
|
readonly compressedfheuint14_deserialize: (a: number, b: number) => [number, number, number];
|
|
3784
2133
|
readonly compressedfheuint14_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
3785
2134
|
readonly compressedfheuint14_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3786
2135
|
readonly compressedfheuint14_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3787
2136
|
readonly compressedfheuint14_serialize: (a: number) => [number, number, number, number];
|
|
3788
|
-
readonly compressedfheuint152_decompress: (a: number) => [number, number, number];
|
|
3789
|
-
readonly compressedfheuint152_deserialize: (a: number, b: number) => [number, number, number];
|
|
3790
|
-
readonly compressedfheuint152_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3791
|
-
readonly compressedfheuint152_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3792
|
-
readonly compressedfheuint152_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3793
|
-
readonly compressedfheuint152_serialize: (a: number) => [number, number, number, number];
|
|
3794
2137
|
readonly compressedfheuint160_decompress: (a: number) => [number, number, number];
|
|
3795
2138
|
readonly compressedfheuint160_deserialize: (a: number, b: number) => [number, number, number];
|
|
3796
2139
|
readonly compressedfheuint160_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3797
2140
|
readonly compressedfheuint160_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3798
2141
|
readonly compressedfheuint160_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3799
2142
|
readonly compressedfheuint160_serialize: (a: number) => [number, number, number, number];
|
|
3800
|
-
readonly compressedfheuint168_decompress: (a: number) => [number, number, number];
|
|
3801
|
-
readonly compressedfheuint168_deserialize: (a: number, b: number) => [number, number, number];
|
|
3802
|
-
readonly compressedfheuint168_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3803
|
-
readonly compressedfheuint168_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3804
|
-
readonly compressedfheuint168_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3805
|
-
readonly compressedfheuint168_serialize: (a: number) => [number, number, number, number];
|
|
3806
2143
|
readonly compressedfheuint16_decompress: (a: number) => [number, number, number];
|
|
3807
2144
|
readonly compressedfheuint16_deserialize: (a: number, b: number) => [number, number, number];
|
|
3808
2145
|
readonly compressedfheuint16_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
3809
2146
|
readonly compressedfheuint16_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3810
2147
|
readonly compressedfheuint16_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3811
2148
|
readonly compressedfheuint16_serialize: (a: number) => [number, number, number, number];
|
|
3812
|
-
readonly compressedfheuint176_decompress: (a: number) => [number, number, number];
|
|
3813
|
-
readonly compressedfheuint176_deserialize: (a: number, b: number) => [number, number, number];
|
|
3814
|
-
readonly compressedfheuint176_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3815
|
-
readonly compressedfheuint176_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3816
|
-
readonly compressedfheuint176_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3817
|
-
readonly compressedfheuint176_serialize: (a: number) => [number, number, number, number];
|
|
3818
|
-
readonly compressedfheuint184_decompress: (a: number) => [number, number, number];
|
|
3819
|
-
readonly compressedfheuint184_deserialize: (a: number, b: number) => [number, number, number];
|
|
3820
|
-
readonly compressedfheuint184_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3821
|
-
readonly compressedfheuint184_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3822
|
-
readonly compressedfheuint184_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3823
|
-
readonly compressedfheuint184_serialize: (a: number) => [number, number, number, number];
|
|
3824
|
-
readonly compressedfheuint192_decompress: (a: number) => [number, number, number];
|
|
3825
|
-
readonly compressedfheuint192_deserialize: (a: number, b: number) => [number, number, number];
|
|
3826
|
-
readonly compressedfheuint192_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3827
|
-
readonly compressedfheuint192_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3828
|
-
readonly compressedfheuint192_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3829
|
-
readonly compressedfheuint192_serialize: (a: number) => [number, number, number, number];
|
|
3830
|
-
readonly compressedfheuint200_decompress: (a: number) => [number, number, number];
|
|
3831
|
-
readonly compressedfheuint200_deserialize: (a: number, b: number) => [number, number, number];
|
|
3832
|
-
readonly compressedfheuint200_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3833
|
-
readonly compressedfheuint200_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3834
|
-
readonly compressedfheuint200_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3835
|
-
readonly compressedfheuint200_serialize: (a: number) => [number, number, number, number];
|
|
3836
2149
|
readonly compressedfheuint2048_decompress: (a: number) => [number, number, number];
|
|
3837
2150
|
readonly compressedfheuint2048_deserialize: (a: number, b: number) => [number, number, number];
|
|
3838
2151
|
readonly compressedfheuint2048_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3839
2152
|
readonly compressedfheuint2048_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3840
2153
|
readonly compressedfheuint2048_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3841
2154
|
readonly compressedfheuint2048_serialize: (a: number) => [number, number, number, number];
|
|
3842
|
-
readonly compressedfheuint208_decompress: (a: number) => [number, number, number];
|
|
3843
|
-
readonly compressedfheuint208_deserialize: (a: number, b: number) => [number, number, number];
|
|
3844
|
-
readonly compressedfheuint208_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3845
|
-
readonly compressedfheuint208_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3846
|
-
readonly compressedfheuint208_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3847
|
-
readonly compressedfheuint208_serialize: (a: number) => [number, number, number, number];
|
|
3848
|
-
readonly compressedfheuint216_decompress: (a: number) => [number, number, number];
|
|
3849
|
-
readonly compressedfheuint216_deserialize: (a: number, b: number) => [number, number, number];
|
|
3850
|
-
readonly compressedfheuint216_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3851
|
-
readonly compressedfheuint216_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3852
|
-
readonly compressedfheuint216_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3853
|
-
readonly compressedfheuint216_serialize: (a: number) => [number, number, number, number];
|
|
3854
|
-
readonly compressedfheuint224_decompress: (a: number) => [number, number, number];
|
|
3855
|
-
readonly compressedfheuint224_deserialize: (a: number, b: number) => [number, number, number];
|
|
3856
|
-
readonly compressedfheuint224_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3857
|
-
readonly compressedfheuint224_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3858
|
-
readonly compressedfheuint224_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3859
|
-
readonly compressedfheuint224_serialize: (a: number) => [number, number, number, number];
|
|
3860
|
-
readonly compressedfheuint232_decompress: (a: number) => [number, number, number];
|
|
3861
|
-
readonly compressedfheuint232_deserialize: (a: number, b: number) => [number, number, number];
|
|
3862
|
-
readonly compressedfheuint232_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3863
|
-
readonly compressedfheuint232_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3864
|
-
readonly compressedfheuint232_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3865
|
-
readonly compressedfheuint232_serialize: (a: number) => [number, number, number, number];
|
|
3866
|
-
readonly compressedfheuint240_decompress: (a: number) => [number, number, number];
|
|
3867
|
-
readonly compressedfheuint240_deserialize: (a: number, b: number) => [number, number, number];
|
|
3868
|
-
readonly compressedfheuint240_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3869
|
-
readonly compressedfheuint240_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3870
|
-
readonly compressedfheuint240_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3871
|
-
readonly compressedfheuint240_serialize: (a: number) => [number, number, number, number];
|
|
3872
|
-
readonly compressedfheuint248_decompress: (a: number) => [number, number, number];
|
|
3873
|
-
readonly compressedfheuint248_deserialize: (a: number, b: number) => [number, number, number];
|
|
3874
|
-
readonly compressedfheuint248_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3875
|
-
readonly compressedfheuint248_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3876
|
-
readonly compressedfheuint248_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3877
|
-
readonly compressedfheuint248_serialize: (a: number) => [number, number, number, number];
|
|
3878
|
-
readonly compressedfheuint24_decompress: (a: number) => [number, number, number];
|
|
3879
|
-
readonly compressedfheuint24_deserialize: (a: number, b: number) => [number, number, number];
|
|
3880
|
-
readonly compressedfheuint24_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
3881
|
-
readonly compressedfheuint24_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3882
|
-
readonly compressedfheuint24_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3883
|
-
readonly compressedfheuint24_serialize: (a: number) => [number, number, number, number];
|
|
3884
2155
|
readonly compressedfheuint256_decompress: (a: number) => [number, number, number];
|
|
3885
2156
|
readonly compressedfheuint256_deserialize: (a: number, b: number) => [number, number, number];
|
|
3886
2157
|
readonly compressedfheuint256_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
@@ -3899,18 +2170,6 @@ export interface InitOutput {
|
|
|
3899
2170
|
readonly compressedfheuint32_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3900
2171
|
readonly compressedfheuint32_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3901
2172
|
readonly compressedfheuint32_serialize: (a: number) => [number, number, number, number];
|
|
3902
|
-
readonly compressedfheuint40_decompress: (a: number) => [number, number, number];
|
|
3903
|
-
readonly compressedfheuint40_deserialize: (a: number, b: number) => [number, number, number];
|
|
3904
|
-
readonly compressedfheuint40_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
3905
|
-
readonly compressedfheuint40_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3906
|
-
readonly compressedfheuint40_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3907
|
-
readonly compressedfheuint40_serialize: (a: number) => [number, number, number, number];
|
|
3908
|
-
readonly compressedfheuint48_decompress: (a: number) => [number, number, number];
|
|
3909
|
-
readonly compressedfheuint48_deserialize: (a: number, b: number) => [number, number, number];
|
|
3910
|
-
readonly compressedfheuint48_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
3911
|
-
readonly compressedfheuint48_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3912
|
-
readonly compressedfheuint48_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3913
|
-
readonly compressedfheuint48_serialize: (a: number) => [number, number, number, number];
|
|
3914
2173
|
readonly compressedfheuint4_decompress: (a: number) => [number, number, number];
|
|
3915
2174
|
readonly compressedfheuint4_deserialize: (a: number, b: number) => [number, number, number];
|
|
3916
2175
|
readonly compressedfheuint4_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
@@ -3923,12 +2182,6 @@ export interface InitOutput {
|
|
|
3923
2182
|
readonly compressedfheuint512_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3924
2183
|
readonly compressedfheuint512_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3925
2184
|
readonly compressedfheuint512_serialize: (a: number) => [number, number, number, number];
|
|
3926
|
-
readonly compressedfheuint56_decompress: (a: number) => [number, number, number];
|
|
3927
|
-
readonly compressedfheuint56_deserialize: (a: number, b: number) => [number, number, number];
|
|
3928
|
-
readonly compressedfheuint56_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
3929
|
-
readonly compressedfheuint56_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3930
|
-
readonly compressedfheuint56_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3931
|
-
readonly compressedfheuint56_serialize: (a: number) => [number, number, number, number];
|
|
3932
2185
|
readonly compressedfheuint64_decompress: (a: number) => [number, number, number];
|
|
3933
2186
|
readonly compressedfheuint64_deserialize: (a: number, b: number) => [number, number, number];
|
|
3934
2187
|
readonly compressedfheuint64_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
@@ -3941,36 +2194,12 @@ export interface InitOutput {
|
|
|
3941
2194
|
readonly compressedfheuint6_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3942
2195
|
readonly compressedfheuint6_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3943
2196
|
readonly compressedfheuint6_serialize: (a: number) => [number, number, number, number];
|
|
3944
|
-
readonly compressedfheuint72_decompress: (a: number) => [number, number, number];
|
|
3945
|
-
readonly compressedfheuint72_deserialize: (a: number, b: number) => [number, number, number];
|
|
3946
|
-
readonly compressedfheuint72_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3947
|
-
readonly compressedfheuint72_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3948
|
-
readonly compressedfheuint72_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3949
|
-
readonly compressedfheuint72_serialize: (a: number) => [number, number, number, number];
|
|
3950
|
-
readonly compressedfheuint80_decompress: (a: number) => [number, number, number];
|
|
3951
|
-
readonly compressedfheuint80_deserialize: (a: number, b: number) => [number, number, number];
|
|
3952
|
-
readonly compressedfheuint80_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3953
|
-
readonly compressedfheuint80_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3954
|
-
readonly compressedfheuint80_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3955
|
-
readonly compressedfheuint80_serialize: (a: number) => [number, number, number, number];
|
|
3956
|
-
readonly compressedfheuint88_decompress: (a: number) => [number, number, number];
|
|
3957
|
-
readonly compressedfheuint88_deserialize: (a: number, b: number) => [number, number, number];
|
|
3958
|
-
readonly compressedfheuint88_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3959
|
-
readonly compressedfheuint88_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3960
|
-
readonly compressedfheuint88_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3961
|
-
readonly compressedfheuint88_serialize: (a: number) => [number, number, number, number];
|
|
3962
2197
|
readonly compressedfheuint8_decompress: (a: number) => [number, number, number];
|
|
3963
2198
|
readonly compressedfheuint8_deserialize: (a: number, b: number) => [number, number, number];
|
|
3964
2199
|
readonly compressedfheuint8_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
3965
2200
|
readonly compressedfheuint8_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3966
2201
|
readonly compressedfheuint8_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3967
2202
|
readonly compressedfheuint8_serialize: (a: number) => [number, number, number, number];
|
|
3968
|
-
readonly compressedfheuint96_decompress: (a: number) => [number, number, number];
|
|
3969
|
-
readonly compressedfheuint96_deserialize: (a: number, b: number) => [number, number, number];
|
|
3970
|
-
readonly compressedfheuint96_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3971
|
-
readonly compressedfheuint96_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3972
|
-
readonly compressedfheuint96_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3973
|
-
readonly compressedfheuint96_serialize: (a: number) => [number, number, number, number];
|
|
3974
2203
|
readonly fhebool_decrypt: (a: number, b: number) => [number, number, number];
|
|
3975
2204
|
readonly fhebool_deserialize: (a: number, b: number) => [number, number, number];
|
|
3976
2205
|
readonly fhebool_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
@@ -3987,14 +2216,6 @@ export interface InitOutput {
|
|
|
3987
2216
|
readonly fheint1024_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3988
2217
|
readonly fheint1024_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3989
2218
|
readonly fheint1024_serialize: (a: number) => [number, number, number, number];
|
|
3990
|
-
readonly fheint104_decrypt: (a: number, b: number) => [number, number, number];
|
|
3991
|
-
readonly fheint104_deserialize: (a: number, b: number) => [number, number, number];
|
|
3992
|
-
readonly fheint104_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
3993
|
-
readonly fheint104_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
3994
|
-
readonly fheint104_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
3995
|
-
readonly fheint104_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3996
|
-
readonly fheint104_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
3997
|
-
readonly fheint104_serialize: (a: number) => [number, number, number, number];
|
|
3998
2219
|
readonly fheint10_decrypt: (a: number, b: number) => [number, number, number];
|
|
3999
2220
|
readonly fheint10_deserialize: (a: number, b: number) => [number, number, number];
|
|
4000
2221
|
readonly fheint10_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
@@ -4003,22 +2224,6 @@ export interface InitOutput {
|
|
|
4003
2224
|
readonly fheint10_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4004
2225
|
readonly fheint10_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4005
2226
|
readonly fheint10_serialize: (a: number) => [number, number, number, number];
|
|
4006
|
-
readonly fheint112_decrypt: (a: number, b: number) => [number, number, number];
|
|
4007
|
-
readonly fheint112_deserialize: (a: number, b: number) => [number, number, number];
|
|
4008
|
-
readonly fheint112_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4009
|
-
readonly fheint112_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4010
|
-
readonly fheint112_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4011
|
-
readonly fheint112_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4012
|
-
readonly fheint112_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4013
|
-
readonly fheint112_serialize: (a: number) => [number, number, number, number];
|
|
4014
|
-
readonly fheint120_decrypt: (a: number, b: number) => [number, number, number];
|
|
4015
|
-
readonly fheint120_deserialize: (a: number, b: number) => [number, number, number];
|
|
4016
|
-
readonly fheint120_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4017
|
-
readonly fheint120_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4018
|
-
readonly fheint120_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4019
|
-
readonly fheint120_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4020
|
-
readonly fheint120_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4021
|
-
readonly fheint120_serialize: (a: number) => [number, number, number, number];
|
|
4022
2227
|
readonly fheint128_decrypt: (a: number, b: number) => [number, number, number];
|
|
4023
2228
|
readonly fheint128_deserialize: (a: number, b: number) => [number, number, number];
|
|
4024
2229
|
readonly fheint128_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
@@ -4027,7 +2232,6 @@ export interface InitOutput {
|
|
|
4027
2232
|
readonly fheint128_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4028
2233
|
readonly fheint128_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4029
2234
|
readonly fheint128_serialize: (a: number) => [number, number, number, number];
|
|
4030
|
-
readonly fheint12_decrypt: (a: number, b: number) => [number, number, number];
|
|
4031
2235
|
readonly fheint12_deserialize: (a: number, b: number) => [number, number, number];
|
|
4032
2236
|
readonly fheint12_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
4033
2237
|
readonly fheint12_encrypt_with_compressed_public_key: (a: number, b: number) => [number, number, number];
|
|
@@ -4035,23 +2239,6 @@ export interface InitOutput {
|
|
|
4035
2239
|
readonly fheint12_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4036
2240
|
readonly fheint12_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4037
2241
|
readonly fheint12_serialize: (a: number) => [number, number, number, number];
|
|
4038
|
-
readonly fheint136_decrypt: (a: number, b: number) => [number, number, number];
|
|
4039
|
-
readonly fheint136_deserialize: (a: number, b: number) => [number, number, number];
|
|
4040
|
-
readonly fheint136_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4041
|
-
readonly fheint136_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4042
|
-
readonly fheint136_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4043
|
-
readonly fheint136_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4044
|
-
readonly fheint136_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4045
|
-
readonly fheint136_serialize: (a: number) => [number, number, number, number];
|
|
4046
|
-
readonly fheint144_decrypt: (a: number, b: number) => [number, number, number];
|
|
4047
|
-
readonly fheint144_deserialize: (a: number, b: number) => [number, number, number];
|
|
4048
|
-
readonly fheint144_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4049
|
-
readonly fheint144_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4050
|
-
readonly fheint144_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4051
|
-
readonly fheint144_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4052
|
-
readonly fheint144_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4053
|
-
readonly fheint144_serialize: (a: number) => [number, number, number, number];
|
|
4054
|
-
readonly fheint14_decrypt: (a: number, b: number) => [number, number, number];
|
|
4055
2242
|
readonly fheint14_deserialize: (a: number, b: number) => [number, number, number];
|
|
4056
2243
|
readonly fheint14_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
4057
2244
|
readonly fheint14_encrypt_with_compressed_public_key: (a: number, b: number) => [number, number, number];
|
|
@@ -4059,14 +2246,6 @@ export interface InitOutput {
|
|
|
4059
2246
|
readonly fheint14_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4060
2247
|
readonly fheint14_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4061
2248
|
readonly fheint14_serialize: (a: number) => [number, number, number, number];
|
|
4062
|
-
readonly fheint152_decrypt: (a: number, b: number) => [number, number, number];
|
|
4063
|
-
readonly fheint152_deserialize: (a: number, b: number) => [number, number, number];
|
|
4064
|
-
readonly fheint152_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4065
|
-
readonly fheint152_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4066
|
-
readonly fheint152_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4067
|
-
readonly fheint152_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4068
|
-
readonly fheint152_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4069
|
-
readonly fheint152_serialize: (a: number) => [number, number, number, number];
|
|
4070
2249
|
readonly fheint160_decrypt: (a: number, b: number) => [number, number, number];
|
|
4071
2250
|
readonly fheint160_deserialize: (a: number, b: number) => [number, number, number];
|
|
4072
2251
|
readonly fheint160_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
@@ -4075,15 +2254,6 @@ export interface InitOutput {
|
|
|
4075
2254
|
readonly fheint160_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4076
2255
|
readonly fheint160_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4077
2256
|
readonly fheint160_serialize: (a: number) => [number, number, number, number];
|
|
4078
|
-
readonly fheint168_decrypt: (a: number, b: number) => [number, number, number];
|
|
4079
|
-
readonly fheint168_deserialize: (a: number, b: number) => [number, number, number];
|
|
4080
|
-
readonly fheint168_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4081
|
-
readonly fheint168_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4082
|
-
readonly fheint168_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4083
|
-
readonly fheint168_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4084
|
-
readonly fheint168_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4085
|
-
readonly fheint168_serialize: (a: number) => [number, number, number, number];
|
|
4086
|
-
readonly fheint16_decrypt: (a: number, b: number) => [number, number, number];
|
|
4087
2257
|
readonly fheint16_deserialize: (a: number, b: number) => [number, number, number];
|
|
4088
2258
|
readonly fheint16_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
4089
2259
|
readonly fheint16_encrypt_with_compressed_public_key: (a: number, b: number) => [number, number, number];
|
|
@@ -4091,38 +2261,6 @@ export interface InitOutput {
|
|
|
4091
2261
|
readonly fheint16_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4092
2262
|
readonly fheint16_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4093
2263
|
readonly fheint16_serialize: (a: number) => [number, number, number, number];
|
|
4094
|
-
readonly fheint176_decrypt: (a: number, b: number) => [number, number, number];
|
|
4095
|
-
readonly fheint176_deserialize: (a: number, b: number) => [number, number, number];
|
|
4096
|
-
readonly fheint176_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4097
|
-
readonly fheint176_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4098
|
-
readonly fheint176_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4099
|
-
readonly fheint176_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4100
|
-
readonly fheint176_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4101
|
-
readonly fheint176_serialize: (a: number) => [number, number, number, number];
|
|
4102
|
-
readonly fheint184_decrypt: (a: number, b: number) => [number, number, number];
|
|
4103
|
-
readonly fheint184_deserialize: (a: number, b: number) => [number, number, number];
|
|
4104
|
-
readonly fheint184_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4105
|
-
readonly fheint184_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4106
|
-
readonly fheint184_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4107
|
-
readonly fheint184_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4108
|
-
readonly fheint184_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4109
|
-
readonly fheint184_serialize: (a: number) => [number, number, number, number];
|
|
4110
|
-
readonly fheint192_decrypt: (a: number, b: number) => [number, number, number];
|
|
4111
|
-
readonly fheint192_deserialize: (a: number, b: number) => [number, number, number];
|
|
4112
|
-
readonly fheint192_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4113
|
-
readonly fheint192_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4114
|
-
readonly fheint192_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4115
|
-
readonly fheint192_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4116
|
-
readonly fheint192_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4117
|
-
readonly fheint192_serialize: (a: number) => [number, number, number, number];
|
|
4118
|
-
readonly fheint200_decrypt: (a: number, b: number) => [number, number, number];
|
|
4119
|
-
readonly fheint200_deserialize: (a: number, b: number) => [number, number, number];
|
|
4120
|
-
readonly fheint200_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4121
|
-
readonly fheint200_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4122
|
-
readonly fheint200_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4123
|
-
readonly fheint200_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4124
|
-
readonly fheint200_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4125
|
-
readonly fheint200_serialize: (a: number) => [number, number, number, number];
|
|
4126
2264
|
readonly fheint2048_decrypt: (a: number, b: number) => [number, number, number];
|
|
4127
2265
|
readonly fheint2048_deserialize: (a: number, b: number) => [number, number, number];
|
|
4128
2266
|
readonly fheint2048_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
@@ -4131,63 +2269,6 @@ export interface InitOutput {
|
|
|
4131
2269
|
readonly fheint2048_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4132
2270
|
readonly fheint2048_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4133
2271
|
readonly fheint2048_serialize: (a: number) => [number, number, number, number];
|
|
4134
|
-
readonly fheint208_decrypt: (a: number, b: number) => [number, number, number];
|
|
4135
|
-
readonly fheint208_deserialize: (a: number, b: number) => [number, number, number];
|
|
4136
|
-
readonly fheint208_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4137
|
-
readonly fheint208_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4138
|
-
readonly fheint208_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4139
|
-
readonly fheint208_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4140
|
-
readonly fheint208_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4141
|
-
readonly fheint208_serialize: (a: number) => [number, number, number, number];
|
|
4142
|
-
readonly fheint216_decrypt: (a: number, b: number) => [number, number, number];
|
|
4143
|
-
readonly fheint216_deserialize: (a: number, b: number) => [number, number, number];
|
|
4144
|
-
readonly fheint216_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4145
|
-
readonly fheint216_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4146
|
-
readonly fheint216_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4147
|
-
readonly fheint216_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4148
|
-
readonly fheint216_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4149
|
-
readonly fheint216_serialize: (a: number) => [number, number, number, number];
|
|
4150
|
-
readonly fheint224_decrypt: (a: number, b: number) => [number, number, number];
|
|
4151
|
-
readonly fheint224_deserialize: (a: number, b: number) => [number, number, number];
|
|
4152
|
-
readonly fheint224_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4153
|
-
readonly fheint224_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4154
|
-
readonly fheint224_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4155
|
-
readonly fheint224_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4156
|
-
readonly fheint224_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4157
|
-
readonly fheint224_serialize: (a: number) => [number, number, number, number];
|
|
4158
|
-
readonly fheint232_decrypt: (a: number, b: number) => [number, number, number];
|
|
4159
|
-
readonly fheint232_deserialize: (a: number, b: number) => [number, number, number];
|
|
4160
|
-
readonly fheint232_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4161
|
-
readonly fheint232_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4162
|
-
readonly fheint232_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4163
|
-
readonly fheint232_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4164
|
-
readonly fheint232_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4165
|
-
readonly fheint232_serialize: (a: number) => [number, number, number, number];
|
|
4166
|
-
readonly fheint240_decrypt: (a: number, b: number) => [number, number, number];
|
|
4167
|
-
readonly fheint240_deserialize: (a: number, b: number) => [number, number, number];
|
|
4168
|
-
readonly fheint240_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4169
|
-
readonly fheint240_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4170
|
-
readonly fheint240_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4171
|
-
readonly fheint240_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4172
|
-
readonly fheint240_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4173
|
-
readonly fheint240_serialize: (a: number) => [number, number, number, number];
|
|
4174
|
-
readonly fheint248_decrypt: (a: number, b: number) => [number, number, number];
|
|
4175
|
-
readonly fheint248_deserialize: (a: number, b: number) => [number, number, number];
|
|
4176
|
-
readonly fheint248_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4177
|
-
readonly fheint248_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4178
|
-
readonly fheint248_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4179
|
-
readonly fheint248_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4180
|
-
readonly fheint248_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4181
|
-
readonly fheint248_serialize: (a: number) => [number, number, number, number];
|
|
4182
|
-
readonly fheint24_decrypt: (a: number, b: number) => [number, number, number];
|
|
4183
|
-
readonly fheint24_deserialize: (a: number, b: number) => [number, number, number];
|
|
4184
|
-
readonly fheint24_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
4185
|
-
readonly fheint24_encrypt_with_compressed_public_key: (a: number, b: number) => [number, number, number];
|
|
4186
|
-
readonly fheint24_encrypt_with_public_key: (a: number, b: number) => [number, number, number];
|
|
4187
|
-
readonly fheint24_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4188
|
-
readonly fheint24_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4189
|
-
readonly fheint24_serialize: (a: number) => [number, number, number, number];
|
|
4190
|
-
readonly fheint256_decrypt: (a: number, b: number) => [number, number, number];
|
|
4191
2272
|
readonly fheint256_deserialize: (a: number, b: number) => [number, number, number];
|
|
4192
2273
|
readonly fheint256_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4193
2274
|
readonly fheint256_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
@@ -4211,23 +2292,6 @@ export interface InitOutput {
|
|
|
4211
2292
|
readonly fheint32_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4212
2293
|
readonly fheint32_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4213
2294
|
readonly fheint32_serialize: (a: number) => [number, number, number, number];
|
|
4214
|
-
readonly fheint40_decrypt: (a: number, b: number) => [bigint, number, number];
|
|
4215
|
-
readonly fheint40_deserialize: (a: number, b: number) => [number, number, number];
|
|
4216
|
-
readonly fheint40_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
4217
|
-
readonly fheint40_encrypt_with_compressed_public_key: (a: bigint, b: number) => [number, number, number];
|
|
4218
|
-
readonly fheint40_encrypt_with_public_key: (a: bigint, b: number) => [number, number, number];
|
|
4219
|
-
readonly fheint40_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4220
|
-
readonly fheint40_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4221
|
-
readonly fheint40_serialize: (a: number) => [number, number, number, number];
|
|
4222
|
-
readonly fheint48_decrypt: (a: number, b: number) => [bigint, number, number];
|
|
4223
|
-
readonly fheint48_deserialize: (a: number, b: number) => [number, number, number];
|
|
4224
|
-
readonly fheint48_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
4225
|
-
readonly fheint48_encrypt_with_compressed_public_key: (a: bigint, b: number) => [number, number, number];
|
|
4226
|
-
readonly fheint48_encrypt_with_public_key: (a: bigint, b: number) => [number, number, number];
|
|
4227
|
-
readonly fheint48_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4228
|
-
readonly fheint48_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4229
|
-
readonly fheint48_serialize: (a: number) => [number, number, number, number];
|
|
4230
|
-
readonly fheint4_decrypt: (a: number, b: number) => [number, number, number];
|
|
4231
2295
|
readonly fheint4_deserialize: (a: number, b: number) => [number, number, number];
|
|
4232
2296
|
readonly fheint4_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
4233
2297
|
readonly fheint4_encrypt_with_compressed_public_key: (a: number, b: number) => [number, number, number];
|
|
@@ -4243,14 +2307,6 @@ export interface InitOutput {
|
|
|
4243
2307
|
readonly fheint512_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4244
2308
|
readonly fheint512_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4245
2309
|
readonly fheint512_serialize: (a: number) => [number, number, number, number];
|
|
4246
|
-
readonly fheint56_decrypt: (a: number, b: number) => [bigint, number, number];
|
|
4247
|
-
readonly fheint56_deserialize: (a: number, b: number) => [number, number, number];
|
|
4248
|
-
readonly fheint56_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
4249
|
-
readonly fheint56_encrypt_with_compressed_public_key: (a: bigint, b: number) => [number, number, number];
|
|
4250
|
-
readonly fheint56_encrypt_with_public_key: (a: bigint, b: number) => [number, number, number];
|
|
4251
|
-
readonly fheint56_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4252
|
-
readonly fheint56_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4253
|
-
readonly fheint56_serialize: (a: number) => [number, number, number, number];
|
|
4254
2310
|
readonly fheint64_decrypt: (a: number, b: number) => [bigint, number, number];
|
|
4255
2311
|
readonly fheint64_deserialize: (a: number, b: number) => [number, number, number];
|
|
4256
2312
|
readonly fheint64_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
@@ -4259,7 +2315,6 @@ export interface InitOutput {
|
|
|
4259
2315
|
readonly fheint64_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4260
2316
|
readonly fheint64_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4261
2317
|
readonly fheint64_serialize: (a: number) => [number, number, number, number];
|
|
4262
|
-
readonly fheint6_decrypt: (a: number, b: number) => [number, number, number];
|
|
4263
2318
|
readonly fheint6_deserialize: (a: number, b: number) => [number, number, number];
|
|
4264
2319
|
readonly fheint6_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
4265
2320
|
readonly fheint6_encrypt_with_compressed_public_key: (a: number, b: number) => [number, number, number];
|
|
@@ -4267,31 +2322,6 @@ export interface InitOutput {
|
|
|
4267
2322
|
readonly fheint6_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4268
2323
|
readonly fheint6_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4269
2324
|
readonly fheint6_serialize: (a: number) => [number, number, number, number];
|
|
4270
|
-
readonly fheint72_decrypt: (a: number, b: number) => [number, number, number];
|
|
4271
|
-
readonly fheint72_deserialize: (a: number, b: number) => [number, number, number];
|
|
4272
|
-
readonly fheint72_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4273
|
-
readonly fheint72_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4274
|
-
readonly fheint72_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4275
|
-
readonly fheint72_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4276
|
-
readonly fheint72_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4277
|
-
readonly fheint72_serialize: (a: number) => [number, number, number, number];
|
|
4278
|
-
readonly fheint80_decrypt: (a: number, b: number) => [number, number, number];
|
|
4279
|
-
readonly fheint80_deserialize: (a: number, b: number) => [number, number, number];
|
|
4280
|
-
readonly fheint80_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4281
|
-
readonly fheint80_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4282
|
-
readonly fheint80_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4283
|
-
readonly fheint80_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4284
|
-
readonly fheint80_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4285
|
-
readonly fheint80_serialize: (a: number) => [number, number, number, number];
|
|
4286
|
-
readonly fheint88_decrypt: (a: number, b: number) => [number, number, number];
|
|
4287
|
-
readonly fheint88_deserialize: (a: number, b: number) => [number, number, number];
|
|
4288
|
-
readonly fheint88_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4289
|
-
readonly fheint88_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4290
|
-
readonly fheint88_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4291
|
-
readonly fheint88_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4292
|
-
readonly fheint88_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4293
|
-
readonly fheint88_serialize: (a: number) => [number, number, number, number];
|
|
4294
|
-
readonly fheint8_decrypt: (a: number, b: number) => [number, number, number];
|
|
4295
2325
|
readonly fheint8_deserialize: (a: number, b: number) => [number, number, number];
|
|
4296
2326
|
readonly fheint8_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
4297
2327
|
readonly fheint8_encrypt_with_compressed_public_key: (a: number, b: number) => [number, number, number];
|
|
@@ -4299,14 +2329,6 @@ export interface InitOutput {
|
|
|
4299
2329
|
readonly fheint8_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4300
2330
|
readonly fheint8_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4301
2331
|
readonly fheint8_serialize: (a: number) => [number, number, number, number];
|
|
4302
|
-
readonly fheint96_decrypt: (a: number, b: number) => [number, number, number];
|
|
4303
|
-
readonly fheint96_deserialize: (a: number, b: number) => [number, number, number];
|
|
4304
|
-
readonly fheint96_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4305
|
-
readonly fheint96_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4306
|
-
readonly fheint96_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4307
|
-
readonly fheint96_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4308
|
-
readonly fheint96_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4309
|
-
readonly fheint96_serialize: (a: number) => [number, number, number, number];
|
|
4310
2332
|
readonly fheuint1024_decrypt: (a: number, b: number) => [number, number, number];
|
|
4311
2333
|
readonly fheuint1024_deserialize: (a: number, b: number) => [number, number, number];
|
|
4312
2334
|
readonly fheuint1024_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
@@ -4315,14 +2337,6 @@ export interface InitOutput {
|
|
|
4315
2337
|
readonly fheuint1024_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4316
2338
|
readonly fheuint1024_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4317
2339
|
readonly fheuint1024_serialize: (a: number) => [number, number, number, number];
|
|
4318
|
-
readonly fheuint104_decrypt: (a: number, b: number) => [number, number, number];
|
|
4319
|
-
readonly fheuint104_deserialize: (a: number, b: number) => [number, number, number];
|
|
4320
|
-
readonly fheuint104_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4321
|
-
readonly fheuint104_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4322
|
-
readonly fheuint104_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4323
|
-
readonly fheuint104_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4324
|
-
readonly fheuint104_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4325
|
-
readonly fheuint104_serialize: (a: number) => [number, number, number, number];
|
|
4326
2340
|
readonly fheuint10_decrypt: (a: number, b: number) => [number, number, number];
|
|
4327
2341
|
readonly fheuint10_deserialize: (a: number, b: number) => [number, number, number];
|
|
4328
2342
|
readonly fheuint10_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
@@ -4331,22 +2345,6 @@ export interface InitOutput {
|
|
|
4331
2345
|
readonly fheuint10_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4332
2346
|
readonly fheuint10_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4333
2347
|
readonly fheuint10_serialize: (a: number) => [number, number, number, number];
|
|
4334
|
-
readonly fheuint112_decrypt: (a: number, b: number) => [number, number, number];
|
|
4335
|
-
readonly fheuint112_deserialize: (a: number, b: number) => [number, number, number];
|
|
4336
|
-
readonly fheuint112_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4337
|
-
readonly fheuint112_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4338
|
-
readonly fheuint112_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4339
|
-
readonly fheuint112_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4340
|
-
readonly fheuint112_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4341
|
-
readonly fheuint112_serialize: (a: number) => [number, number, number, number];
|
|
4342
|
-
readonly fheuint120_decrypt: (a: number, b: number) => [number, number, number];
|
|
4343
|
-
readonly fheuint120_deserialize: (a: number, b: number) => [number, number, number];
|
|
4344
|
-
readonly fheuint120_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4345
|
-
readonly fheuint120_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4346
|
-
readonly fheuint120_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4347
|
-
readonly fheuint120_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4348
|
-
readonly fheuint120_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4349
|
-
readonly fheuint120_serialize: (a: number) => [number, number, number, number];
|
|
4350
2348
|
readonly fheuint128_decrypt: (a: number, b: number) => [number, number, number];
|
|
4351
2349
|
readonly fheuint128_deserialize: (a: number, b: number) => [number, number, number];
|
|
4352
2350
|
readonly fheuint128_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
@@ -4355,7 +2353,6 @@ export interface InitOutput {
|
|
|
4355
2353
|
readonly fheuint128_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4356
2354
|
readonly fheuint128_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4357
2355
|
readonly fheuint128_serialize: (a: number) => [number, number, number, number];
|
|
4358
|
-
readonly fheuint12_decrypt: (a: number, b: number) => [number, number, number];
|
|
4359
2356
|
readonly fheuint12_deserialize: (a: number, b: number) => [number, number, number];
|
|
4360
2357
|
readonly fheuint12_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
4361
2358
|
readonly fheuint12_encrypt_with_compressed_public_key: (a: number, b: number) => [number, number, number];
|
|
@@ -4363,23 +2360,6 @@ export interface InitOutput {
|
|
|
4363
2360
|
readonly fheuint12_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4364
2361
|
readonly fheuint12_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4365
2362
|
readonly fheuint12_serialize: (a: number) => [number, number, number, number];
|
|
4366
|
-
readonly fheuint136_decrypt: (a: number, b: number) => [number, number, number];
|
|
4367
|
-
readonly fheuint136_deserialize: (a: number, b: number) => [number, number, number];
|
|
4368
|
-
readonly fheuint136_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4369
|
-
readonly fheuint136_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4370
|
-
readonly fheuint136_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4371
|
-
readonly fheuint136_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4372
|
-
readonly fheuint136_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4373
|
-
readonly fheuint136_serialize: (a: number) => [number, number, number, number];
|
|
4374
|
-
readonly fheuint144_decrypt: (a: number, b: number) => [number, number, number];
|
|
4375
|
-
readonly fheuint144_deserialize: (a: number, b: number) => [number, number, number];
|
|
4376
|
-
readonly fheuint144_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4377
|
-
readonly fheuint144_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4378
|
-
readonly fheuint144_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4379
|
-
readonly fheuint144_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4380
|
-
readonly fheuint144_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4381
|
-
readonly fheuint144_serialize: (a: number) => [number, number, number, number];
|
|
4382
|
-
readonly fheuint14_decrypt: (a: number, b: number) => [number, number, number];
|
|
4383
2363
|
readonly fheuint14_deserialize: (a: number, b: number) => [number, number, number];
|
|
4384
2364
|
readonly fheuint14_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
4385
2365
|
readonly fheuint14_encrypt_with_compressed_public_key: (a: number, b: number) => [number, number, number];
|
|
@@ -4387,14 +2367,6 @@ export interface InitOutput {
|
|
|
4387
2367
|
readonly fheuint14_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4388
2368
|
readonly fheuint14_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4389
2369
|
readonly fheuint14_serialize: (a: number) => [number, number, number, number];
|
|
4390
|
-
readonly fheuint152_decrypt: (a: number, b: number) => [number, number, number];
|
|
4391
|
-
readonly fheuint152_deserialize: (a: number, b: number) => [number, number, number];
|
|
4392
|
-
readonly fheuint152_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4393
|
-
readonly fheuint152_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4394
|
-
readonly fheuint152_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4395
|
-
readonly fheuint152_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4396
|
-
readonly fheuint152_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4397
|
-
readonly fheuint152_serialize: (a: number) => [number, number, number, number];
|
|
4398
2370
|
readonly fheuint160_decrypt: (a: number, b: number) => [number, number, number];
|
|
4399
2371
|
readonly fheuint160_deserialize: (a: number, b: number) => [number, number, number];
|
|
4400
2372
|
readonly fheuint160_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
@@ -4403,15 +2375,6 @@ export interface InitOutput {
|
|
|
4403
2375
|
readonly fheuint160_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4404
2376
|
readonly fheuint160_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4405
2377
|
readonly fheuint160_serialize: (a: number) => [number, number, number, number];
|
|
4406
|
-
readonly fheuint168_decrypt: (a: number, b: number) => [number, number, number];
|
|
4407
|
-
readonly fheuint168_deserialize: (a: number, b: number) => [number, number, number];
|
|
4408
|
-
readonly fheuint168_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4409
|
-
readonly fheuint168_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4410
|
-
readonly fheuint168_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4411
|
-
readonly fheuint168_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4412
|
-
readonly fheuint168_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4413
|
-
readonly fheuint168_serialize: (a: number) => [number, number, number, number];
|
|
4414
|
-
readonly fheuint16_decrypt: (a: number, b: number) => [number, number, number];
|
|
4415
2378
|
readonly fheuint16_deserialize: (a: number, b: number) => [number, number, number];
|
|
4416
2379
|
readonly fheuint16_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
4417
2380
|
readonly fheuint16_encrypt_with_compressed_public_key: (a: number, b: number) => [number, number, number];
|
|
@@ -4419,38 +2382,6 @@ export interface InitOutput {
|
|
|
4419
2382
|
readonly fheuint16_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4420
2383
|
readonly fheuint16_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4421
2384
|
readonly fheuint16_serialize: (a: number) => [number, number, number, number];
|
|
4422
|
-
readonly fheuint176_decrypt: (a: number, b: number) => [number, number, number];
|
|
4423
|
-
readonly fheuint176_deserialize: (a: number, b: number) => [number, number, number];
|
|
4424
|
-
readonly fheuint176_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4425
|
-
readonly fheuint176_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4426
|
-
readonly fheuint176_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4427
|
-
readonly fheuint176_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4428
|
-
readonly fheuint176_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4429
|
-
readonly fheuint176_serialize: (a: number) => [number, number, number, number];
|
|
4430
|
-
readonly fheuint184_decrypt: (a: number, b: number) => [number, number, number];
|
|
4431
|
-
readonly fheuint184_deserialize: (a: number, b: number) => [number, number, number];
|
|
4432
|
-
readonly fheuint184_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4433
|
-
readonly fheuint184_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4434
|
-
readonly fheuint184_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4435
|
-
readonly fheuint184_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4436
|
-
readonly fheuint184_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4437
|
-
readonly fheuint184_serialize: (a: number) => [number, number, number, number];
|
|
4438
|
-
readonly fheuint192_decrypt: (a: number, b: number) => [number, number, number];
|
|
4439
|
-
readonly fheuint192_deserialize: (a: number, b: number) => [number, number, number];
|
|
4440
|
-
readonly fheuint192_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4441
|
-
readonly fheuint192_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4442
|
-
readonly fheuint192_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4443
|
-
readonly fheuint192_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4444
|
-
readonly fheuint192_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4445
|
-
readonly fheuint192_serialize: (a: number) => [number, number, number, number];
|
|
4446
|
-
readonly fheuint200_decrypt: (a: number, b: number) => [number, number, number];
|
|
4447
|
-
readonly fheuint200_deserialize: (a: number, b: number) => [number, number, number];
|
|
4448
|
-
readonly fheuint200_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4449
|
-
readonly fheuint200_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4450
|
-
readonly fheuint200_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4451
|
-
readonly fheuint200_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4452
|
-
readonly fheuint200_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4453
|
-
readonly fheuint200_serialize: (a: number) => [number, number, number, number];
|
|
4454
2385
|
readonly fheuint2048_decrypt: (a: number, b: number) => [number, number, number];
|
|
4455
2386
|
readonly fheuint2048_deserialize: (a: number, b: number) => [number, number, number];
|
|
4456
2387
|
readonly fheuint2048_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
@@ -4459,63 +2390,6 @@ export interface InitOutput {
|
|
|
4459
2390
|
readonly fheuint2048_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4460
2391
|
readonly fheuint2048_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4461
2392
|
readonly fheuint2048_serialize: (a: number) => [number, number, number, number];
|
|
4462
|
-
readonly fheuint208_decrypt: (a: number, b: number) => [number, number, number];
|
|
4463
|
-
readonly fheuint208_deserialize: (a: number, b: number) => [number, number, number];
|
|
4464
|
-
readonly fheuint208_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4465
|
-
readonly fheuint208_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4466
|
-
readonly fheuint208_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4467
|
-
readonly fheuint208_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4468
|
-
readonly fheuint208_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4469
|
-
readonly fheuint208_serialize: (a: number) => [number, number, number, number];
|
|
4470
|
-
readonly fheuint216_decrypt: (a: number, b: number) => [number, number, number];
|
|
4471
|
-
readonly fheuint216_deserialize: (a: number, b: number) => [number, number, number];
|
|
4472
|
-
readonly fheuint216_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4473
|
-
readonly fheuint216_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4474
|
-
readonly fheuint216_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4475
|
-
readonly fheuint216_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4476
|
-
readonly fheuint216_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4477
|
-
readonly fheuint216_serialize: (a: number) => [number, number, number, number];
|
|
4478
|
-
readonly fheuint224_decrypt: (a: number, b: number) => [number, number, number];
|
|
4479
|
-
readonly fheuint224_deserialize: (a: number, b: number) => [number, number, number];
|
|
4480
|
-
readonly fheuint224_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4481
|
-
readonly fheuint224_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4482
|
-
readonly fheuint224_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4483
|
-
readonly fheuint224_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4484
|
-
readonly fheuint224_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4485
|
-
readonly fheuint224_serialize: (a: number) => [number, number, number, number];
|
|
4486
|
-
readonly fheuint232_decrypt: (a: number, b: number) => [number, number, number];
|
|
4487
|
-
readonly fheuint232_deserialize: (a: number, b: number) => [number, number, number];
|
|
4488
|
-
readonly fheuint232_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4489
|
-
readonly fheuint232_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4490
|
-
readonly fheuint232_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4491
|
-
readonly fheuint232_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4492
|
-
readonly fheuint232_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4493
|
-
readonly fheuint232_serialize: (a: number) => [number, number, number, number];
|
|
4494
|
-
readonly fheuint240_decrypt: (a: number, b: number) => [number, number, number];
|
|
4495
|
-
readonly fheuint240_deserialize: (a: number, b: number) => [number, number, number];
|
|
4496
|
-
readonly fheuint240_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4497
|
-
readonly fheuint240_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4498
|
-
readonly fheuint240_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4499
|
-
readonly fheuint240_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4500
|
-
readonly fheuint240_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4501
|
-
readonly fheuint240_serialize: (a: number) => [number, number, number, number];
|
|
4502
|
-
readonly fheuint248_decrypt: (a: number, b: number) => [number, number, number];
|
|
4503
|
-
readonly fheuint248_deserialize: (a: number, b: number) => [number, number, number];
|
|
4504
|
-
readonly fheuint248_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4505
|
-
readonly fheuint248_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4506
|
-
readonly fheuint248_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4507
|
-
readonly fheuint248_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4508
|
-
readonly fheuint248_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4509
|
-
readonly fheuint248_serialize: (a: number) => [number, number, number, number];
|
|
4510
|
-
readonly fheuint24_decrypt: (a: number, b: number) => [number, number, number];
|
|
4511
|
-
readonly fheuint24_deserialize: (a: number, b: number) => [number, number, number];
|
|
4512
|
-
readonly fheuint24_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
4513
|
-
readonly fheuint24_encrypt_with_compressed_public_key: (a: number, b: number) => [number, number, number];
|
|
4514
|
-
readonly fheuint24_encrypt_with_public_key: (a: number, b: number) => [number, number, number];
|
|
4515
|
-
readonly fheuint24_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4516
|
-
readonly fheuint24_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4517
|
-
readonly fheuint24_serialize: (a: number) => [number, number, number, number];
|
|
4518
|
-
readonly fheuint256_decrypt: (a: number, b: number) => [number, number, number];
|
|
4519
2393
|
readonly fheuint256_deserialize: (a: number, b: number) => [number, number, number];
|
|
4520
2394
|
readonly fheuint256_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4521
2395
|
readonly fheuint256_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
@@ -4539,23 +2413,6 @@ export interface InitOutput {
|
|
|
4539
2413
|
readonly fheuint32_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4540
2414
|
readonly fheuint32_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4541
2415
|
readonly fheuint32_serialize: (a: number) => [number, number, number, number];
|
|
4542
|
-
readonly fheuint40_decrypt: (a: number, b: number) => [bigint, number, number];
|
|
4543
|
-
readonly fheuint40_deserialize: (a: number, b: number) => [number, number, number];
|
|
4544
|
-
readonly fheuint40_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
4545
|
-
readonly fheuint40_encrypt_with_compressed_public_key: (a: bigint, b: number) => [number, number, number];
|
|
4546
|
-
readonly fheuint40_encrypt_with_public_key: (a: bigint, b: number) => [number, number, number];
|
|
4547
|
-
readonly fheuint40_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4548
|
-
readonly fheuint40_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4549
|
-
readonly fheuint40_serialize: (a: number) => [number, number, number, number];
|
|
4550
|
-
readonly fheuint48_decrypt: (a: number, b: number) => [bigint, number, number];
|
|
4551
|
-
readonly fheuint48_deserialize: (a: number, b: number) => [number, number, number];
|
|
4552
|
-
readonly fheuint48_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
4553
|
-
readonly fheuint48_encrypt_with_compressed_public_key: (a: bigint, b: number) => [number, number, number];
|
|
4554
|
-
readonly fheuint48_encrypt_with_public_key: (a: bigint, b: number) => [number, number, number];
|
|
4555
|
-
readonly fheuint48_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4556
|
-
readonly fheuint48_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4557
|
-
readonly fheuint48_serialize: (a: number) => [number, number, number, number];
|
|
4558
|
-
readonly fheuint4_decrypt: (a: number, b: number) => [number, number, number];
|
|
4559
2416
|
readonly fheuint4_deserialize: (a: number, b: number) => [number, number, number];
|
|
4560
2417
|
readonly fheuint4_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
4561
2418
|
readonly fheuint4_encrypt_with_compressed_public_key: (a: number, b: number) => [number, number, number];
|
|
@@ -4571,14 +2428,6 @@ export interface InitOutput {
|
|
|
4571
2428
|
readonly fheuint512_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4572
2429
|
readonly fheuint512_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4573
2430
|
readonly fheuint512_serialize: (a: number) => [number, number, number, number];
|
|
4574
|
-
readonly fheuint56_decrypt: (a: number, b: number) => [bigint, number, number];
|
|
4575
|
-
readonly fheuint56_deserialize: (a: number, b: number) => [number, number, number];
|
|
4576
|
-
readonly fheuint56_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
4577
|
-
readonly fheuint56_encrypt_with_compressed_public_key: (a: bigint, b: number) => [number, number, number];
|
|
4578
|
-
readonly fheuint56_encrypt_with_public_key: (a: bigint, b: number) => [number, number, number];
|
|
4579
|
-
readonly fheuint56_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4580
|
-
readonly fheuint56_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4581
|
-
readonly fheuint56_serialize: (a: number) => [number, number, number, number];
|
|
4582
2431
|
readonly fheuint64_decrypt: (a: number, b: number) => [bigint, number, number];
|
|
4583
2432
|
readonly fheuint64_deserialize: (a: number, b: number) => [number, number, number];
|
|
4584
2433
|
readonly fheuint64_encrypt_with_client_key: (a: bigint, b: number) => [number, number, number];
|
|
@@ -4587,7 +2436,6 @@ export interface InitOutput {
|
|
|
4587
2436
|
readonly fheuint64_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4588
2437
|
readonly fheuint64_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4589
2438
|
readonly fheuint64_serialize: (a: number) => [number, number, number, number];
|
|
4590
|
-
readonly fheuint6_decrypt: (a: number, b: number) => [number, number, number];
|
|
4591
2439
|
readonly fheuint6_deserialize: (a: number, b: number) => [number, number, number];
|
|
4592
2440
|
readonly fheuint6_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
4593
2441
|
readonly fheuint6_encrypt_with_compressed_public_key: (a: number, b: number) => [number, number, number];
|
|
@@ -4595,31 +2443,6 @@ export interface InitOutput {
|
|
|
4595
2443
|
readonly fheuint6_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4596
2444
|
readonly fheuint6_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4597
2445
|
readonly fheuint6_serialize: (a: number) => [number, number, number, number];
|
|
4598
|
-
readonly fheuint72_decrypt: (a: number, b: number) => [number, number, number];
|
|
4599
|
-
readonly fheuint72_deserialize: (a: number, b: number) => [number, number, number];
|
|
4600
|
-
readonly fheuint72_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4601
|
-
readonly fheuint72_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4602
|
-
readonly fheuint72_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4603
|
-
readonly fheuint72_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4604
|
-
readonly fheuint72_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4605
|
-
readonly fheuint72_serialize: (a: number) => [number, number, number, number];
|
|
4606
|
-
readonly fheuint80_decrypt: (a: number, b: number) => [number, number, number];
|
|
4607
|
-
readonly fheuint80_deserialize: (a: number, b: number) => [number, number, number];
|
|
4608
|
-
readonly fheuint80_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4609
|
-
readonly fheuint80_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4610
|
-
readonly fheuint80_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4611
|
-
readonly fheuint80_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4612
|
-
readonly fheuint80_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4613
|
-
readonly fheuint80_serialize: (a: number) => [number, number, number, number];
|
|
4614
|
-
readonly fheuint88_decrypt: (a: number, b: number) => [number, number, number];
|
|
4615
|
-
readonly fheuint88_deserialize: (a: number, b: number) => [number, number, number];
|
|
4616
|
-
readonly fheuint88_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4617
|
-
readonly fheuint88_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4618
|
-
readonly fheuint88_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4619
|
-
readonly fheuint88_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4620
|
-
readonly fheuint88_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4621
|
-
readonly fheuint88_serialize: (a: number) => [number, number, number, number];
|
|
4622
|
-
readonly fheuint8_decrypt: (a: number, b: number) => [number, number, number];
|
|
4623
2446
|
readonly fheuint8_deserialize: (a: number, b: number) => [number, number, number];
|
|
4624
2447
|
readonly fheuint8_encrypt_with_client_key: (a: number, b: number) => [number, number, number];
|
|
4625
2448
|
readonly fheuint8_encrypt_with_compressed_public_key: (a: number, b: number) => [number, number, number];
|
|
@@ -4627,165 +2450,88 @@ export interface InitOutput {
|
|
|
4627
2450
|
readonly fheuint8_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4628
2451
|
readonly fheuint8_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4629
2452
|
readonly fheuint8_serialize: (a: number) => [number, number, number, number];
|
|
4630
|
-
readonly fheuint96_decrypt: (a: number, b: number) => [number, number, number];
|
|
4631
|
-
readonly fheuint96_deserialize: (a: number, b: number) => [number, number, number];
|
|
4632
|
-
readonly fheuint96_encrypt_with_client_key: (a: any, b: number) => [number, number, number];
|
|
4633
|
-
readonly fheuint96_encrypt_with_compressed_public_key: (a: any, b: number) => [number, number, number];
|
|
4634
|
-
readonly fheuint96_encrypt_with_public_key: (a: any, b: number) => [number, number, number];
|
|
4635
|
-
readonly fheuint96_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4636
|
-
readonly fheuint96_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4637
|
-
readonly fheuint96_serialize: (a: number) => [number, number, number, number];
|
|
4638
|
-
readonly init_panic_hook: () => void;
|
|
4639
|
-
readonly provencompactciphertextlist_builder: (a: number) => [number, number, number];
|
|
4640
|
-
readonly provencompactciphertextlist_deserialize: (a: number, b: number) => [number, number, number];
|
|
4641
|
-
readonly provencompactciphertextlist_expand_without_verification: (a: number) => [number, number, number];
|
|
4642
|
-
readonly provencompactciphertextlist_get_kind_of: (a: number, b: number) => number;
|
|
4643
|
-
readonly provencompactciphertextlist_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4644
|
-
readonly provencompactciphertextlist_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4645
|
-
readonly provencompactciphertextlist_serialize: (a: number) => [number, number, number, number];
|
|
4646
|
-
readonly provencompactciphertextlist_verify_and_expand: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
4647
|
-
readonly set_server_key: (a: number) => [number, number];
|
|
4648
|
-
readonly tfheclientkey_deserialize: (a: number, b: number) => [number, number, number];
|
|
4649
|
-
readonly tfheclientkey_generate: (a: number) => [number, number, number];
|
|
4650
|
-
readonly tfheclientkey_generate_with_seed: (a: number, b: any) => [number, number, number];
|
|
4651
|
-
readonly tfheclientkey_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4652
|
-
readonly tfheclientkey_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4653
|
-
readonly tfheclientkey_serialize: (a: number) => [number, number, number, number];
|
|
4654
|
-
readonly tfhecompactpublickey_deserialize: (a: number, b: number) => [number, number, number];
|
|
4655
|
-
readonly tfhecompactpublickey_new: (a: number) => [number, number, number];
|
|
4656
|
-
readonly tfhecompactpublickey_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4657
|
-
readonly tfhecompactpublickey_safe_deserialize_conformant: (a: number, b: number, c: bigint, d: number) => [number, number, number];
|
|
4658
|
-
readonly tfhecompactpublickey_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4659
|
-
readonly tfhecompactpublickey_serialize: (a: number) => [number, number, number, number];
|
|
4660
|
-
readonly tfhecompressedcompactpublickey_decompress: (a: number) => [number, number, number];
|
|
4661
|
-
readonly tfhecompressedcompactpublickey_deserialize: (a: number, b: number) => [number, number, number];
|
|
4662
|
-
readonly tfhecompressedcompactpublickey_new: (a: number) => [number, number, number];
|
|
4663
|
-
readonly tfhecompressedcompactpublickey_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4664
|
-
readonly tfhecompressedcompactpublickey_safe_deserialize_conformant: (a: number, b: number, c: bigint, d: number) => [number, number, number];
|
|
4665
|
-
readonly tfhecompressedcompactpublickey_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4666
|
-
readonly tfhecompressedcompactpublickey_serialize: (a: number) => [number, number, number, number];
|
|
4667
|
-
readonly tfhecompressedpublickey_decompress: (a: number) => [number, number, number];
|
|
4668
|
-
readonly tfhecompressedpublickey_deserialize: (a: number, b: number) => [number, number, number];
|
|
4669
|
-
readonly tfhecompressedpublickey_new: (a: number) => [number, number, number];
|
|
4670
|
-
readonly tfhecompressedpublickey_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4671
|
-
readonly tfhecompressedpublickey_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4672
|
-
readonly tfhecompressedpublickey_serialize: (a: number) => [number, number, number, number];
|
|
4673
|
-
readonly tfhecompressedserverkey_deserialize: (a: number, b: number) => [number, number, number];
|
|
4674
|
-
readonly tfhecompressedserverkey_new: (a: number) => [number, number, number];
|
|
4675
|
-
readonly tfhecompressedserverkey_safe_deserialize: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4676
|
-
readonly tfhecompressedserverkey_safe_serialize: (a: number, b: bigint) => [number, number, number, number];
|
|
4677
|
-
readonly tfhecompressedserverkey_serialize: (a: number) => [number, number, number, number];
|
|
4678
2453
|
readonly tfheconfigbuilder_build: (a: number) => number;
|
|
4679
2454
|
readonly tfheconfigbuilder_default: () => number;
|
|
4680
2455
|
readonly tfheconfigbuilder_use_custom_parameters: (a: number, b: number) => number;
|
|
4681
2456
|
readonly tfheconfigbuilder_use_dedicated_compact_public_key_parameters: (a: number, b: number) => number;
|
|
4682
2457
|
readonly tfheconfigbuilder_with_custom_parameters: (a: number) => number;
|
|
4683
|
-
readonly
|
|
4684
|
-
readonly
|
|
4685
|
-
readonly
|
|
4686
|
-
readonly
|
|
4687
|
-
readonly
|
|
4688
|
-
readonly
|
|
4689
|
-
readonly
|
|
4690
|
-
readonly
|
|
4691
|
-
readonly
|
|
4692
|
-
readonly
|
|
4693
|
-
readonly
|
|
4694
|
-
readonly
|
|
4695
|
-
readonly
|
|
4696
|
-
readonly
|
|
4697
|
-
readonly
|
|
4698
|
-
readonly
|
|
4699
|
-
readonly
|
|
4700
|
-
readonly
|
|
4701
|
-
readonly
|
|
4702
|
-
readonly
|
|
4703
|
-
readonly
|
|
4704
|
-
readonly
|
|
4705
|
-
readonly
|
|
4706
|
-
readonly
|
|
4707
|
-
readonly
|
|
4708
|
-
readonly
|
|
4709
|
-
readonly
|
|
4710
|
-
readonly
|
|
4711
|
-
readonly
|
|
4712
|
-
readonly
|
|
4713
|
-
readonly
|
|
4714
|
-
readonly
|
|
4715
|
-
readonly
|
|
4716
|
-
readonly
|
|
4717
|
-
readonly
|
|
4718
|
-
readonly
|
|
4719
|
-
readonly
|
|
4720
|
-
readonly
|
|
4721
|
-
readonly
|
|
4722
|
-
readonly
|
|
4723
|
-
readonly
|
|
4724
|
-
readonly
|
|
4725
|
-
readonly
|
|
4726
|
-
readonly
|
|
4727
|
-
readonly
|
|
4728
|
-
readonly
|
|
4729
|
-
readonly
|
|
4730
|
-
readonly
|
|
4731
|
-
readonly
|
|
4732
|
-
readonly
|
|
4733
|
-
readonly
|
|
4734
|
-
readonly
|
|
4735
|
-
readonly
|
|
4736
|
-
readonly
|
|
4737
|
-
readonly
|
|
4738
|
-
readonly
|
|
4739
|
-
readonly
|
|
4740
|
-
readonly
|
|
4741
|
-
readonly
|
|
4742
|
-
readonly
|
|
4743
|
-
readonly
|
|
4744
|
-
readonly
|
|
4745
|
-
readonly
|
|
4746
|
-
readonly
|
|
4747
|
-
readonly
|
|
4748
|
-
readonly
|
|
4749
|
-
readonly
|
|
4750
|
-
readonly
|
|
4751
|
-
readonly
|
|
4752
|
-
readonly
|
|
4753
|
-
readonly
|
|
4754
|
-
readonly
|
|
4755
|
-
readonly
|
|
4756
|
-
readonly
|
|
4757
|
-
readonly
|
|
4758
|
-
readonly
|
|
4759
|
-
readonly
|
|
4760
|
-
readonly shortint_try_new_t_uniform: (a: number) => [number, number, number];
|
|
4761
|
-
readonly shortintcompactpublickeyencryptionparameters_new: (a: number) => number;
|
|
4762
|
-
readonly shortintcompactpublickeyencryptionparameters_new_parameters: (a: number, b: number, c: bigint, d: bigint, e: number, f: number, g: number, h: number) => [number, number, number];
|
|
4763
|
-
readonly shortintparameters_carry_modulus: (a: number) => bigint;
|
|
4764
|
-
readonly shortintparameters_encryption_key_choice: (a: number) => number;
|
|
4765
|
-
readonly shortintparameters_glwe_dimension: (a: number) => number;
|
|
4766
|
-
readonly shortintparameters_glwe_noise_distribution: (a: number) => number;
|
|
4767
|
-
readonly shortintparameters_ks_base_log: (a: number) => number;
|
|
4768
|
-
readonly shortintparameters_ks_level: (a: number) => number;
|
|
4769
|
-
readonly shortintparameters_lwe_dimension: (a: number) => number;
|
|
4770
|
-
readonly shortintparameters_message_modulus: (a: number) => bigint;
|
|
4771
|
-
readonly shortintparameters_new: (a: number) => [number, number, number];
|
|
4772
|
-
readonly shortintparameters_pbs_base_log: (a: number) => number;
|
|
4773
|
-
readonly shortintparameters_pbs_level: (a: number) => number;
|
|
4774
|
-
readonly shortintparameters_polynomial_size: (a: number) => number;
|
|
4775
|
-
readonly shortintparameters_set_carry_modulus: (a: number, b: bigint) => void;
|
|
4776
|
-
readonly shortintparameters_set_encryption_key_choice: (a: number, b: number) => void;
|
|
4777
|
-
readonly shortintparameters_set_glwe_dimension: (a: number, b: number) => void;
|
|
4778
|
-
readonly shortintparameters_set_glwe_noise_distribution: (a: number, b: number) => void;
|
|
4779
|
-
readonly shortintparameters_set_ks_base_log: (a: number, b: number) => void;
|
|
4780
|
-
readonly shortintparameters_set_ks_level: (a: number, b: number) => void;
|
|
4781
|
-
readonly shortintparameters_set_lwe_dimension: (a: number, b: number) => void;
|
|
4782
|
-
readonly shortintparameters_set_lwe_noise_distribution: (a: number, b: number) => void;
|
|
4783
|
-
readonly shortintparameters_set_message_modulus: (a: number, b: bigint) => void;
|
|
4784
|
-
readonly shortintparameters_set_pbs_base_log: (a: number, b: number) => void;
|
|
4785
|
-
readonly shortintparameters_set_pbs_level: (a: number, b: number) => void;
|
|
4786
|
-
readonly shortintparameters_set_polynomial_size: (a: number, b: number) => void;
|
|
4787
|
-
readonly shortint_new_gaussian_from_std_dev: (a: number) => number;
|
|
4788
|
-
readonly shortintparameters_lwe_noise_distribution: (a: number) => number;
|
|
2458
|
+
readonly __wbg_compressedfheint10_free: (a: number, b: number) => void;
|
|
2459
|
+
readonly __wbg_compressedfheint128_free: (a: number, b: number) => void;
|
|
2460
|
+
readonly __wbg_compressedfheint12_free: (a: number, b: number) => void;
|
|
2461
|
+
readonly __wbg_compressedfheint14_free: (a: number, b: number) => void;
|
|
2462
|
+
readonly __wbg_compressedfheint160_free: (a: number, b: number) => void;
|
|
2463
|
+
readonly __wbg_compressedfheint16_free: (a: number, b: number) => void;
|
|
2464
|
+
readonly __wbg_compressedfheint2048_free: (a: number, b: number) => void;
|
|
2465
|
+
readonly __wbg_compressedfheint256_free: (a: number, b: number) => void;
|
|
2466
|
+
readonly __wbg_compressedfheint2_free: (a: number, b: number) => void;
|
|
2467
|
+
readonly __wbg_compressedfheint32_free: (a: number, b: number) => void;
|
|
2468
|
+
readonly __wbg_compressedfheint4_free: (a: number, b: number) => void;
|
|
2469
|
+
readonly __wbg_compressedfheint512_free: (a: number, b: number) => void;
|
|
2470
|
+
readonly __wbg_compressedfheint64_free: (a: number, b: number) => void;
|
|
2471
|
+
readonly __wbg_compressedfheint6_free: (a: number, b: number) => void;
|
|
2472
|
+
readonly __wbg_compressedfheint8_free: (a: number, b: number) => void;
|
|
2473
|
+
readonly __wbg_compressedfheuint10_free: (a: number, b: number) => void;
|
|
2474
|
+
readonly __wbg_compressedfheuint128_free: (a: number, b: number) => void;
|
|
2475
|
+
readonly __wbg_compressedfheuint12_free: (a: number, b: number) => void;
|
|
2476
|
+
readonly __wbg_compressedfheuint14_free: (a: number, b: number) => void;
|
|
2477
|
+
readonly __wbg_compressedfheuint160_free: (a: number, b: number) => void;
|
|
2478
|
+
readonly __wbg_compressedfheuint16_free: (a: number, b: number) => void;
|
|
2479
|
+
readonly __wbg_compressedfheuint2048_free: (a: number, b: number) => void;
|
|
2480
|
+
readonly __wbg_compressedfheuint256_free: (a: number, b: number) => void;
|
|
2481
|
+
readonly __wbg_compressedfheuint2_free: (a: number, b: number) => void;
|
|
2482
|
+
readonly __wbg_compressedfheuint32_free: (a: number, b: number) => void;
|
|
2483
|
+
readonly __wbg_compressedfheuint4_free: (a: number, b: number) => void;
|
|
2484
|
+
readonly __wbg_compressedfheuint512_free: (a: number, b: number) => void;
|
|
2485
|
+
readonly __wbg_compressedfheuint64_free: (a: number, b: number) => void;
|
|
2486
|
+
readonly __wbg_compressedfheuint6_free: (a: number, b: number) => void;
|
|
2487
|
+
readonly __wbg_compressedfheuint8_free: (a: number, b: number) => void;
|
|
2488
|
+
readonly fheint12_decrypt: (a: number, b: number) => [number, number, number];
|
|
2489
|
+
readonly fheint14_decrypt: (a: number, b: number) => [number, number, number];
|
|
2490
|
+
readonly fheint16_decrypt: (a: number, b: number) => [number, number, number];
|
|
2491
|
+
readonly fheint4_decrypt: (a: number, b: number) => [number, number, number];
|
|
2492
|
+
readonly fheint6_decrypt: (a: number, b: number) => [number, number, number];
|
|
2493
|
+
readonly fheint8_decrypt: (a: number, b: number) => [number, number, number];
|
|
2494
|
+
readonly __wbg_fheint10_free: (a: number, b: number) => void;
|
|
2495
|
+
readonly __wbg_fheint128_free: (a: number, b: number) => void;
|
|
2496
|
+
readonly __wbg_fheint12_free: (a: number, b: number) => void;
|
|
2497
|
+
readonly __wbg_fheint14_free: (a: number, b: number) => void;
|
|
2498
|
+
readonly __wbg_fheint160_free: (a: number, b: number) => void;
|
|
2499
|
+
readonly __wbg_fheint16_free: (a: number, b: number) => void;
|
|
2500
|
+
readonly __wbg_fheint2048_free: (a: number, b: number) => void;
|
|
2501
|
+
readonly __wbg_fheint256_free: (a: number, b: number) => void;
|
|
2502
|
+
readonly __wbg_fheint2_free: (a: number, b: number) => void;
|
|
2503
|
+
readonly __wbg_fheint32_free: (a: number, b: number) => void;
|
|
2504
|
+
readonly __wbg_fheint4_free: (a: number, b: number) => void;
|
|
2505
|
+
readonly __wbg_fheint512_free: (a: number, b: number) => void;
|
|
2506
|
+
readonly __wbg_fheint64_free: (a: number, b: number) => void;
|
|
2507
|
+
readonly __wbg_fheint6_free: (a: number, b: number) => void;
|
|
2508
|
+
readonly __wbg_fheint8_free: (a: number, b: number) => void;
|
|
2509
|
+
readonly __wbg_fheuint1024_free: (a: number, b: number) => void;
|
|
2510
|
+
readonly __wbg_fheuint10_free: (a: number, b: number) => void;
|
|
2511
|
+
readonly __wbg_fheuint128_free: (a: number, b: number) => void;
|
|
2512
|
+
readonly __wbg_fheuint12_free: (a: number, b: number) => void;
|
|
2513
|
+
readonly __wbg_fheuint14_free: (a: number, b: number) => void;
|
|
2514
|
+
readonly __wbg_fheuint160_free: (a: number, b: number) => void;
|
|
2515
|
+
readonly __wbg_fheuint16_free: (a: number, b: number) => void;
|
|
2516
|
+
readonly __wbg_fheuint2048_free: (a: number, b: number) => void;
|
|
2517
|
+
readonly __wbg_fheuint256_free: (a: number, b: number) => void;
|
|
2518
|
+
readonly __wbg_fheuint2_free: (a: number, b: number) => void;
|
|
2519
|
+
readonly __wbg_fheuint32_free: (a: number, b: number) => void;
|
|
2520
|
+
readonly __wbg_fheuint4_free: (a: number, b: number) => void;
|
|
2521
|
+
readonly __wbg_fheuint512_free: (a: number, b: number) => void;
|
|
2522
|
+
readonly __wbg_fheuint64_free: (a: number, b: number) => void;
|
|
2523
|
+
readonly __wbg_fheuint6_free: (a: number, b: number) => void;
|
|
2524
|
+
readonly __wbg_fheuint8_free: (a: number, b: number) => void;
|
|
2525
|
+
readonly __wbg_tfheconfigbuilder_free: (a: number, b: number) => void;
|
|
2526
|
+
readonly fheuint8_decrypt: (a: number, b: number) => [number, number, number];
|
|
2527
|
+
readonly fheuint12_decrypt: (a: number, b: number) => [number, number, number];
|
|
2528
|
+
readonly fheuint14_decrypt: (a: number, b: number) => [number, number, number];
|
|
2529
|
+
readonly fheuint4_decrypt: (a: number, b: number) => [number, number, number];
|
|
2530
|
+
readonly fheuint16_decrypt: (a: number, b: number) => [number, number, number];
|
|
2531
|
+
readonly fheuint256_decrypt: (a: number, b: number) => [number, number, number];
|
|
2532
|
+
readonly fheint256_decrypt: (a: number, b: number) => [number, number, number];
|
|
2533
|
+
readonly fheuint6_decrypt: (a: number, b: number) => [number, number, number];
|
|
2534
|
+
readonly __wbg_compressedfheuint1024_free: (a: number, b: number) => void;
|
|
4789
2535
|
readonly __wbindgen_exn_store: (a: number) => void;
|
|
4790
2536
|
readonly __externref_table_alloc: () => number;
|
|
4791
2537
|
readonly __wbindgen_externrefs: WebAssembly.Table;
|