tkms 0.9.0-rc3
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/README.md +1 -0
- package/kms_lib.d.ts +523 -0
- package/kms_lib.js +2097 -0
- package/kms_lib_bg.wasm +0 -0
- package/package.json +18 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# tkms
|
package/kms_lib.d.ts
ADDED
|
@@ -0,0 +1,523 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* @param {PublicSigKey} pk
|
|
5
|
+
* @returns {Uint8Array}
|
|
6
|
+
*/
|
|
7
|
+
export function public_sig_key_to_u8vec(pk: PublicSigKey): Uint8Array;
|
|
8
|
+
/**
|
|
9
|
+
* @param {Uint8Array} v
|
|
10
|
+
* @returns {PublicSigKey}
|
|
11
|
+
*/
|
|
12
|
+
export function u8vec_to_public_sig_key(v: Uint8Array): PublicSigKey;
|
|
13
|
+
/**
|
|
14
|
+
* @param {PrivateSigKey} sk
|
|
15
|
+
* @returns {Uint8Array}
|
|
16
|
+
*/
|
|
17
|
+
export function private_sig_key_to_u8vec(sk: PrivateSigKey): Uint8Array;
|
|
18
|
+
/**
|
|
19
|
+
* @param {Uint8Array} v
|
|
20
|
+
* @returns {PrivateSigKey}
|
|
21
|
+
*/
|
|
22
|
+
export function u8vec_to_private_sig_key(v: Uint8Array): PrivateSigKey;
|
|
23
|
+
/**
|
|
24
|
+
* Instantiate a new client.
|
|
25
|
+
*
|
|
26
|
+
* * `server_pks` - a list of KMS server signature public keys,
|
|
27
|
+
* which can parsed using [u8vec_to_public_sig_key].
|
|
28
|
+
*
|
|
29
|
+
* * `client_address_hex` - the client (wallet) address in hex,
|
|
30
|
+
* must be prefixed with "0x".
|
|
31
|
+
*
|
|
32
|
+
* * `param_choice` - the parameter choice, which can be either `"test"` or `"default"`.
|
|
33
|
+
* The "default" parameter choice is selected if no matching string is found.
|
|
34
|
+
* @param {(PublicSigKey)[]} server_pks
|
|
35
|
+
* @param {string} client_address_hex
|
|
36
|
+
* @param {string} param_choice
|
|
37
|
+
* @returns {Client}
|
|
38
|
+
*/
|
|
39
|
+
export function new_client(server_pks: (PublicSigKey)[], client_address_hex: string, param_choice: string): Client;
|
|
40
|
+
/**
|
|
41
|
+
* @param {Client} client
|
|
42
|
+
* @returns {(PublicSigKey)[]}
|
|
43
|
+
*/
|
|
44
|
+
export function get_server_public_keys(client: Client): (PublicSigKey)[];
|
|
45
|
+
/**
|
|
46
|
+
* @param {Client} client
|
|
47
|
+
* @returns {PrivateSigKey | undefined}
|
|
48
|
+
*/
|
|
49
|
+
export function get_client_secret_key(client: Client): PrivateSigKey | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* @param {Client} client
|
|
52
|
+
* @returns {string}
|
|
53
|
+
*/
|
|
54
|
+
export function get_client_address(client: Client): string;
|
|
55
|
+
/**
|
|
56
|
+
* @returns {PrivateEncKey}
|
|
57
|
+
*/
|
|
58
|
+
export function cryptobox_keygen(): PrivateEncKey;
|
|
59
|
+
/**
|
|
60
|
+
* @param {PrivateEncKey} sk
|
|
61
|
+
* @returns {PublicEncKey}
|
|
62
|
+
*/
|
|
63
|
+
export function cryptobox_get_pk(sk: PrivateEncKey): PublicEncKey;
|
|
64
|
+
/**
|
|
65
|
+
* @param {PublicEncKey} pk
|
|
66
|
+
* @returns {Uint8Array}
|
|
67
|
+
*/
|
|
68
|
+
export function cryptobox_pk_to_u8vec(pk: PublicEncKey): Uint8Array;
|
|
69
|
+
/**
|
|
70
|
+
* @param {PrivateEncKey} sk
|
|
71
|
+
* @returns {Uint8Array}
|
|
72
|
+
*/
|
|
73
|
+
export function cryptobox_sk_to_u8vec(sk: PrivateEncKey): Uint8Array;
|
|
74
|
+
/**
|
|
75
|
+
* @param {Uint8Array} v
|
|
76
|
+
* @returns {PublicEncKey}
|
|
77
|
+
*/
|
|
78
|
+
export function u8vec_to_cryptobox_pk(v: Uint8Array): PublicEncKey;
|
|
79
|
+
/**
|
|
80
|
+
* @param {Uint8Array} v
|
|
81
|
+
* @returns {PrivateEncKey}
|
|
82
|
+
*/
|
|
83
|
+
export function u8vec_to_cryptobox_sk(v: Uint8Array): PrivateEncKey;
|
|
84
|
+
/**
|
|
85
|
+
* @param {Uint8Array} msg
|
|
86
|
+
* @param {PublicEncKey} their_pk
|
|
87
|
+
* @param {PrivateEncKey} my_sk
|
|
88
|
+
* @returns {CryptoBoxCt}
|
|
89
|
+
*/
|
|
90
|
+
export function cryptobox_encrypt(msg: Uint8Array, their_pk: PublicEncKey, my_sk: PrivateEncKey): CryptoBoxCt;
|
|
91
|
+
/**
|
|
92
|
+
* @param {CryptoBoxCt} ct
|
|
93
|
+
* @param {PrivateEncKey} my_sk
|
|
94
|
+
* @param {PublicEncKey} their_pk
|
|
95
|
+
* @returns {Uint8Array}
|
|
96
|
+
*/
|
|
97
|
+
export function cryptobox_decrypt(ct: CryptoBoxCt, my_sk: PrivateEncKey, their_pk: PublicEncKey): Uint8Array;
|
|
98
|
+
/**
|
|
99
|
+
* Process the reencryption response from JavaScript objects.
|
|
100
|
+
* The result is a byte array representing a plaintext of any length.
|
|
101
|
+
*
|
|
102
|
+
* * `client` - client that wants to perform reencryption.
|
|
103
|
+
*
|
|
104
|
+
* * `request` - the initial reencryption request JS object.
|
|
105
|
+
* It can be set to null if `verify` is false.
|
|
106
|
+
* Otherwise the caller needs to give the following JS object.
|
|
107
|
+
* Note that `client_address` and `eip712_verifying_contract` follow EIP-55.
|
|
108
|
+
* ```
|
|
109
|
+
* {
|
|
110
|
+
* signature: '15a4f9a8eb61459cfba7d103d8f911fb04ce91ecf841b34c49c0d56a70b896d20cbc31986188f91efc3842b7df215cee8acb40178daedb8b63d0ba5d199bce121c',
|
|
111
|
+
* client_address: '0x17853A630aAe15AED549B2B874de08B73C0F59c5',
|
|
112
|
+
* enc_key: '2000000000000000df2fcacb774f03187f3802a27259f45c06d33cefa68d9c53426b15ad531aa822',
|
|
113
|
+
* ciphertext_digest: '0748b542afe2353c86cb707e3d21044b0be1fd18efc7cbaa6a415af055bfb358',
|
|
114
|
+
* eip712_verifying_contract: '0x66f9664f97F2b50F62D13eA064982f936dE76657'
|
|
115
|
+
* }
|
|
116
|
+
* ```
|
|
117
|
+
*
|
|
118
|
+
* * `eip712_domain` - the EIP-712 domain JS object.
|
|
119
|
+
* It can be set to null if `verify` is false.
|
|
120
|
+
* Otherwise the caller needs to give the following JS object.
|
|
121
|
+
* Note that `salt` is optional and `verifying_contract` follows EIP-55,
|
|
122
|
+
* additionally, `chain_id` is an array of u8.
|
|
123
|
+
* ```
|
|
124
|
+
* {
|
|
125
|
+
* name: 'Authorization token',
|
|
126
|
+
* version: '1',
|
|
127
|
+
* chain_id: [
|
|
128
|
+
* 70, 31, 0, 0, 0, 0, 0, 0, 0,
|
|
129
|
+
* 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
130
|
+
* 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
131
|
+
* 0, 0, 0, 0, 0
|
|
132
|
+
* ],
|
|
133
|
+
* verifying_contract: '0x66f9664f97F2b50F62D13eA064982f936dE76657',
|
|
134
|
+
* salt: []
|
|
135
|
+
* }
|
|
136
|
+
* ```
|
|
137
|
+
*
|
|
138
|
+
* * `agg_resp` - the response JS object from the gateway.
|
|
139
|
+
* It has two fields like so, both are hex encoded byte arrays.
|
|
140
|
+
* ```
|
|
141
|
+
* [
|
|
142
|
+
* {
|
|
143
|
+
* signature: '69e7e040cab157aa819015b321c012dccb1545ffefd325b359b492653f0347517e28e66c572cdc299e259024329859ff9fcb0096e1ce072af0b6e1ca1fe25ec6',
|
|
144
|
+
* payload: '0100000029...'
|
|
145
|
+
* }
|
|
146
|
+
* ]
|
|
147
|
+
* ```
|
|
148
|
+
*
|
|
149
|
+
* * `enc_pk` - The ephemeral public key.
|
|
150
|
+
*
|
|
151
|
+
* * `enc_sk` - The ephemeral secret key.
|
|
152
|
+
*
|
|
153
|
+
* * `verify` - Whether to perform signature verification for the response.
|
|
154
|
+
* It is insecure if `verify = false`!
|
|
155
|
+
* @param {Client} client
|
|
156
|
+
* @param {any} request
|
|
157
|
+
* @param {any} eip712_domain
|
|
158
|
+
* @param {any} agg_resp
|
|
159
|
+
* @param {PublicEncKey} enc_pk
|
|
160
|
+
* @param {PrivateEncKey} enc_sk
|
|
161
|
+
* @param {boolean} verify
|
|
162
|
+
* @returns {Uint8Array}
|
|
163
|
+
*/
|
|
164
|
+
export function process_reencryption_resp_from_js(client: Client, request: any, eip712_domain: any, agg_resp: any, enc_pk: PublicEncKey, enc_sk: PrivateEncKey, verify: boolean): Uint8Array;
|
|
165
|
+
/**
|
|
166
|
+
* Process the reencryption response from Rust objects.
|
|
167
|
+
* Consider using [process_reencryption_resp_from_js]
|
|
168
|
+
* when using the JS API.
|
|
169
|
+
* The result is a byte array representing a plaintext of any length.
|
|
170
|
+
*
|
|
171
|
+
* * `client` - client that wants to perform reencryption.
|
|
172
|
+
*
|
|
173
|
+
* * `request` - the initial reencryption request.
|
|
174
|
+
* Must be given if `verify` is true.
|
|
175
|
+
*
|
|
176
|
+
* * `eip712_domain` - the EIP-712 domain.
|
|
177
|
+
* Must be given if `verify` is true.
|
|
178
|
+
*
|
|
179
|
+
* * `agg_resp` - the vector of reencryption responses.
|
|
180
|
+
*
|
|
181
|
+
* * `enc_pk` - The ephemeral public key.
|
|
182
|
+
*
|
|
183
|
+
* * `enc_sk` - The ephemeral secret key.
|
|
184
|
+
*
|
|
185
|
+
* * `verify` - Whether to perform signature verification for the response.
|
|
186
|
+
* It is insecure if `verify = false`!
|
|
187
|
+
* @param {Client} client
|
|
188
|
+
* @param {ParsedReencryptionRequest | undefined} request
|
|
189
|
+
* @param {Eip712DomainMsg | undefined} eip712_domain
|
|
190
|
+
* @param {(ReencryptionResponse)[]} agg_resp
|
|
191
|
+
* @param {PublicEncKey} enc_pk
|
|
192
|
+
* @param {PrivateEncKey} enc_sk
|
|
193
|
+
* @param {boolean} verify
|
|
194
|
+
* @returns {Uint8Array}
|
|
195
|
+
*/
|
|
196
|
+
export function process_reencryption_resp(client: Client, request: ParsedReencryptionRequest | undefined, eip712_domain: Eip712DomainMsg | undefined, agg_resp: (ReencryptionResponse)[], enc_pk: PublicEncKey, enc_sk: PrivateEncKey, verify: boolean): Uint8Array;
|
|
197
|
+
/**
|
|
198
|
+
* The plaintext types that can be encrypted in a fhevm ciphertext.
|
|
199
|
+
*/
|
|
200
|
+
export enum FheType {
|
|
201
|
+
Ebool = 0,
|
|
202
|
+
Euint4 = 1,
|
|
203
|
+
Euint8 = 2,
|
|
204
|
+
Euint16 = 3,
|
|
205
|
+
Euint32 = 4,
|
|
206
|
+
Euint64 = 5,
|
|
207
|
+
Euint128 = 6,
|
|
208
|
+
Euint160 = 7,
|
|
209
|
+
Euint256 = 8,
|
|
210
|
+
Euint512 = 9,
|
|
211
|
+
Euint1024 = 10,
|
|
212
|
+
Euint2048 = 11,
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* Simple client to interact with the KMS servers. This can be seen as a proof-of-concept
|
|
216
|
+
* and reference code for validating the KMS. The logic supplied by the client will be
|
|
217
|
+
* distributed across the aggregator/proxy and smart contracts.
|
|
218
|
+
*/
|
|
219
|
+
export class Client {
|
|
220
|
+
free(): void;
|
|
221
|
+
}
|
|
222
|
+
/**
|
|
223
|
+
*/
|
|
224
|
+
export class CryptoBoxCt {
|
|
225
|
+
free(): void;
|
|
226
|
+
}
|
|
227
|
+
/**
|
|
228
|
+
* <https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator>
|
|
229
|
+
* eventually chain_id, verifying_contract and salt will be parsed in to
|
|
230
|
+
* solidity types
|
|
231
|
+
*/
|
|
232
|
+
export class Eip712DomainMsg {
|
|
233
|
+
free(): void;
|
|
234
|
+
/**
|
|
235
|
+
*/
|
|
236
|
+
chain_id: Uint8Array;
|
|
237
|
+
/**
|
|
238
|
+
*/
|
|
239
|
+
name: string;
|
|
240
|
+
/**
|
|
241
|
+
*/
|
|
242
|
+
salt: Uint8Array;
|
|
243
|
+
/**
|
|
244
|
+
*/
|
|
245
|
+
verifying_contract: string;
|
|
246
|
+
/**
|
|
247
|
+
*/
|
|
248
|
+
version: string;
|
|
249
|
+
}
|
|
250
|
+
/**
|
|
251
|
+
* Validity of this struct is not checked.
|
|
252
|
+
*/
|
|
253
|
+
export class ParsedReencryptionRequest {
|
|
254
|
+
free(): void;
|
|
255
|
+
}
|
|
256
|
+
/**
|
|
257
|
+
*/
|
|
258
|
+
export class Plaintext {
|
|
259
|
+
free(): void;
|
|
260
|
+
/**
|
|
261
|
+
*/
|
|
262
|
+
bytes: Uint8Array;
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
*/
|
|
266
|
+
export class PrivateEncKey {
|
|
267
|
+
free(): void;
|
|
268
|
+
}
|
|
269
|
+
/**
|
|
270
|
+
*/
|
|
271
|
+
export class PrivateSigKey {
|
|
272
|
+
free(): void;
|
|
273
|
+
}
|
|
274
|
+
/**
|
|
275
|
+
*/
|
|
276
|
+
export class PublicEncKey {
|
|
277
|
+
free(): void;
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
*/
|
|
281
|
+
export class PublicSigKey {
|
|
282
|
+
free(): void;
|
|
283
|
+
}
|
|
284
|
+
/**
|
|
285
|
+
*/
|
|
286
|
+
export class ReencryptionRequest {
|
|
287
|
+
free(): void;
|
|
288
|
+
/**
|
|
289
|
+
*/
|
|
290
|
+
domain?: Eip712DomainMsg;
|
|
291
|
+
/**
|
|
292
|
+
*/
|
|
293
|
+
payload?: ReencryptionRequestPayload;
|
|
294
|
+
/**
|
|
295
|
+
* The ID that identifies this request.
|
|
296
|
+
* Future queries for the result must use this request ID.
|
|
297
|
+
*/
|
|
298
|
+
request_id?: RequestId;
|
|
299
|
+
/**
|
|
300
|
+
* Signature of the serialization of \[ReencryptionRequestPayload\].
|
|
301
|
+
*/
|
|
302
|
+
signature: Uint8Array;
|
|
303
|
+
}
|
|
304
|
+
/**
|
|
305
|
+
*/
|
|
306
|
+
export class ReencryptionRequestPayload {
|
|
307
|
+
free(): void;
|
|
308
|
+
/**
|
|
309
|
+
* The actual ciphertext to decrypt, taken directly from the fhevm.
|
|
310
|
+
* When creating the payload, this field may be empty,
|
|
311
|
+
* it is the responsibility of the gateway to fetch the
|
|
312
|
+
* ciphertext for the given digest below.
|
|
313
|
+
*/
|
|
314
|
+
ciphertext?: Uint8Array;
|
|
315
|
+
/**
|
|
316
|
+
* The SHA3 digest of the ciphertext above.
|
|
317
|
+
*/
|
|
318
|
+
ciphertext_digest: Uint8Array;
|
|
319
|
+
/**
|
|
320
|
+
* The client's (blockchain wallet) address,
|
|
321
|
+
* encoded using EIP-55.
|
|
322
|
+
*/
|
|
323
|
+
client_address: string;
|
|
324
|
+
/**
|
|
325
|
+
* Encoding of the user's public encryption key for this request.
|
|
326
|
+
* Encoding using the default encoding of libsodium, i.e. the 32 bytes of a
|
|
327
|
+
* Montgomery point.
|
|
328
|
+
*/
|
|
329
|
+
enc_key: Uint8Array;
|
|
330
|
+
/**
|
|
331
|
+
* The type of plaintext encrypted.
|
|
332
|
+
*/
|
|
333
|
+
fhe_type: number;
|
|
334
|
+
/**
|
|
335
|
+
* The key id to use for decryption. Will be the request_id used during key
|
|
336
|
+
* generation
|
|
337
|
+
*/
|
|
338
|
+
key_id?: RequestId;
|
|
339
|
+
/**
|
|
340
|
+
* Version of the request format.
|
|
341
|
+
*/
|
|
342
|
+
version: number;
|
|
343
|
+
}
|
|
344
|
+
/**
|
|
345
|
+
*/
|
|
346
|
+
export class ReencryptionResponse {
|
|
347
|
+
free(): void;
|
|
348
|
+
/**
|
|
349
|
+
* Signature of the serialization of \[ReencryptionResponsePayload\].
|
|
350
|
+
*/
|
|
351
|
+
payload?: ReencryptionResponsePayload;
|
|
352
|
+
/**
|
|
353
|
+
*/
|
|
354
|
+
signature: Uint8Array;
|
|
355
|
+
}
|
|
356
|
+
/**
|
|
357
|
+
*/
|
|
358
|
+
export class ReencryptionResponsePayload {
|
|
359
|
+
free(): void;
|
|
360
|
+
/**
|
|
361
|
+
* The degree of the sharing scheme used.
|
|
362
|
+
*/
|
|
363
|
+
degree: number;
|
|
364
|
+
/**
|
|
365
|
+
* The concatenation of two digests:
|
|
366
|
+
* (eip712_signing_hash(pk, domain) || ciphertext digest).
|
|
367
|
+
* This is needed to ensure the response corresponds to the request.
|
|
368
|
+
*/
|
|
369
|
+
digest: Uint8Array;
|
|
370
|
+
/**
|
|
371
|
+
* The type of plaintext encrypted.
|
|
372
|
+
*/
|
|
373
|
+
fhe_type: number;
|
|
374
|
+
/**
|
|
375
|
+
* The ID of the MPC party doing the reencryption. Used for polynomial
|
|
376
|
+
* reconstruction.
|
|
377
|
+
*/
|
|
378
|
+
party_id: number;
|
|
379
|
+
/**
|
|
380
|
+
* The signcrypted payload, using a hybrid encryption approach in
|
|
381
|
+
* sign-then-encrypt.
|
|
382
|
+
*/
|
|
383
|
+
signcrypted_ciphertext: Uint8Array;
|
|
384
|
+
/**
|
|
385
|
+
* The server's signature verification key.
|
|
386
|
+
* Encoded using SEC1.
|
|
387
|
+
* Needed to validate the response, but MUST also be linked to a list of
|
|
388
|
+
* trusted keys.
|
|
389
|
+
*/
|
|
390
|
+
verification_key: Uint8Array;
|
|
391
|
+
/**
|
|
392
|
+
* Version of the response format.
|
|
393
|
+
*/
|
|
394
|
+
version: number;
|
|
395
|
+
}
|
|
396
|
+
/**
|
|
397
|
+
* Simple response to return an ID, to be used to retrieve the computed result
|
|
398
|
+
* later on.
|
|
399
|
+
*/
|
|
400
|
+
export class RequestId {
|
|
401
|
+
free(): void;
|
|
402
|
+
/**
|
|
403
|
+
*/
|
|
404
|
+
request_id: string;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
408
|
+
|
|
409
|
+
export interface InitOutput {
|
|
410
|
+
readonly memory: WebAssembly.Memory;
|
|
411
|
+
readonly __wbg_client_free: (a: number, b: number) => void;
|
|
412
|
+
readonly __wbg_parsedreencryptionrequest_free: (a: number, b: number) => void;
|
|
413
|
+
readonly __wbg_publicenckey_free: (a: number, b: number) => void;
|
|
414
|
+
readonly __wbg_privateenckey_free: (a: number, b: number) => void;
|
|
415
|
+
readonly __wbg_publicsigkey_free: (a: number, b: number) => void;
|
|
416
|
+
readonly __wbg_privatesigkey_free: (a: number, b: number) => void;
|
|
417
|
+
readonly public_sig_key_to_u8vec: (a: number, b: number) => void;
|
|
418
|
+
readonly u8vec_to_public_sig_key: (a: number, b: number, c: number) => void;
|
|
419
|
+
readonly private_sig_key_to_u8vec: (a: number, b: number) => void;
|
|
420
|
+
readonly u8vec_to_private_sig_key: (a: number, b: number, c: number) => void;
|
|
421
|
+
readonly new_client: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
422
|
+
readonly get_server_public_keys: (a: number, b: number) => void;
|
|
423
|
+
readonly get_client_secret_key: (a: number) => number;
|
|
424
|
+
readonly get_client_address: (a: number, b: number) => void;
|
|
425
|
+
readonly __wbg_cryptoboxct_free: (a: number, b: number) => void;
|
|
426
|
+
readonly cryptobox_keygen: () => number;
|
|
427
|
+
readonly cryptobox_get_pk: (a: number) => number;
|
|
428
|
+
readonly cryptobox_pk_to_u8vec: (a: number, b: number) => void;
|
|
429
|
+
readonly cryptobox_sk_to_u8vec: (a: number, b: number) => void;
|
|
430
|
+
readonly u8vec_to_cryptobox_pk: (a: number, b: number, c: number) => void;
|
|
431
|
+
readonly u8vec_to_cryptobox_sk: (a: number, b: number, c: number) => void;
|
|
432
|
+
readonly cryptobox_encrypt: (a: number, b: number, c: number, d: number) => number;
|
|
433
|
+
readonly cryptobox_decrypt: (a: number, b: number, c: number, d: number) => void;
|
|
434
|
+
readonly process_reencryption_resp_from_js: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => void;
|
|
435
|
+
readonly process_reencryption_resp: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
436
|
+
readonly __wbg_requestid_free: (a: number, b: number) => void;
|
|
437
|
+
readonly __wbg_reencryptionrequestpayload_free: (a: number, b: number) => void;
|
|
438
|
+
readonly __wbg_get_reencryptionrequestpayload_version: (a: number) => number;
|
|
439
|
+
readonly __wbg_set_reencryptionrequestpayload_version: (a: number, b: number) => void;
|
|
440
|
+
readonly __wbg_get_reencryptionrequestpayload_enc_key: (a: number, b: number) => void;
|
|
441
|
+
readonly __wbg_get_reencryptionrequestpayload_fhe_type: (a: number) => number;
|
|
442
|
+
readonly __wbg_set_reencryptionrequestpayload_fhe_type: (a: number, b: number) => void;
|
|
443
|
+
readonly __wbg_get_reencryptionrequestpayload_key_id: (a: number) => number;
|
|
444
|
+
readonly __wbg_set_reencryptionrequestpayload_key_id: (a: number, b: number) => void;
|
|
445
|
+
readonly __wbg_get_reencryptionrequestpayload_ciphertext: (a: number, b: number) => void;
|
|
446
|
+
readonly __wbg_set_reencryptionrequestpayload_ciphertext: (a: number, b: number, c: number) => void;
|
|
447
|
+
readonly __wbg_eip712domainmsg_free: (a: number, b: number) => void;
|
|
448
|
+
readonly __wbg_get_eip712domainmsg_name: (a: number, b: number) => void;
|
|
449
|
+
readonly __wbg_set_eip712domainmsg_name: (a: number, b: number, c: number) => void;
|
|
450
|
+
readonly __wbg_get_eip712domainmsg_version: (a: number, b: number) => void;
|
|
451
|
+
readonly __wbg_set_eip712domainmsg_version: (a: number, b: number, c: number) => void;
|
|
452
|
+
readonly __wbg_get_eip712domainmsg_chain_id: (a: number, b: number) => void;
|
|
453
|
+
readonly __wbg_set_eip712domainmsg_chain_id: (a: number, b: number, c: number) => void;
|
|
454
|
+
readonly __wbg_get_eip712domainmsg_verifying_contract: (a: number, b: number) => void;
|
|
455
|
+
readonly __wbg_set_eip712domainmsg_verifying_contract: (a: number, b: number, c: number) => void;
|
|
456
|
+
readonly __wbg_get_eip712domainmsg_salt: (a: number, b: number) => void;
|
|
457
|
+
readonly __wbg_set_eip712domainmsg_salt: (a: number, b: number, c: number) => void;
|
|
458
|
+
readonly __wbg_reencryptionrequest_free: (a: number, b: number) => void;
|
|
459
|
+
readonly __wbg_get_reencryptionrequest_signature: (a: number, b: number) => void;
|
|
460
|
+
readonly __wbg_get_reencryptionrequest_payload: (a: number) => number;
|
|
461
|
+
readonly __wbg_set_reencryptionrequest_payload: (a: number, b: number) => void;
|
|
462
|
+
readonly __wbg_get_reencryptionrequest_domain: (a: number) => number;
|
|
463
|
+
readonly __wbg_set_reencryptionrequest_domain: (a: number, b: number) => void;
|
|
464
|
+
readonly __wbg_get_reencryptionrequest_request_id: (a: number) => number;
|
|
465
|
+
readonly __wbg_set_reencryptionrequest_request_id: (a: number, b: number) => void;
|
|
466
|
+
readonly __wbg_reencryptionresponse_free: (a: number, b: number) => void;
|
|
467
|
+
readonly __wbg_get_reencryptionresponse_payload: (a: number) => number;
|
|
468
|
+
readonly __wbg_set_reencryptionresponse_payload: (a: number, b: number) => void;
|
|
469
|
+
readonly __wbg_reencryptionresponsepayload_free: (a: number, b: number) => void;
|
|
470
|
+
readonly __wbg_get_reencryptionresponsepayload_version: (a: number) => number;
|
|
471
|
+
readonly __wbg_set_reencryptionresponsepayload_version: (a: number, b: number) => void;
|
|
472
|
+
readonly __wbg_get_reencryptionresponsepayload_fhe_type: (a: number) => number;
|
|
473
|
+
readonly __wbg_set_reencryptionresponsepayload_fhe_type: (a: number, b: number) => void;
|
|
474
|
+
readonly __wbg_get_reencryptionresponsepayload_party_id: (a: number) => number;
|
|
475
|
+
readonly __wbg_set_reencryptionresponsepayload_party_id: (a: number, b: number) => void;
|
|
476
|
+
readonly __wbg_get_reencryptionresponsepayload_degree: (a: number) => number;
|
|
477
|
+
readonly __wbg_set_reencryptionresponsepayload_degree: (a: number, b: number) => void;
|
|
478
|
+
readonly __wbg_set_requestid_request_id: (a: number, b: number, c: number) => void;
|
|
479
|
+
readonly __wbg_set_reencryptionrequestpayload_client_address: (a: number, b: number, c: number) => void;
|
|
480
|
+
readonly __wbg_set_reencryptionrequestpayload_enc_key: (a: number, b: number, c: number) => void;
|
|
481
|
+
readonly __wbg_set_reencryptionrequestpayload_ciphertext_digest: (a: number, b: number, c: number) => void;
|
|
482
|
+
readonly __wbg_set_reencryptionrequest_signature: (a: number, b: number, c: number) => void;
|
|
483
|
+
readonly __wbg_set_reencryptionresponse_signature: (a: number, b: number, c: number) => void;
|
|
484
|
+
readonly __wbg_set_reencryptionresponsepayload_verification_key: (a: number, b: number, c: number) => void;
|
|
485
|
+
readonly __wbg_set_reencryptionresponsepayload_digest: (a: number, b: number, c: number) => void;
|
|
486
|
+
readonly __wbg_set_reencryptionresponsepayload_signcrypted_ciphertext: (a: number, b: number, c: number) => void;
|
|
487
|
+
readonly __wbg_get_reencryptionrequestpayload_ciphertext_digest: (a: number, b: number) => void;
|
|
488
|
+
readonly __wbg_get_reencryptionresponse_signature: (a: number, b: number) => void;
|
|
489
|
+
readonly __wbg_get_reencryptionresponsepayload_verification_key: (a: number, b: number) => void;
|
|
490
|
+
readonly __wbg_get_reencryptionresponsepayload_digest: (a: number, b: number) => void;
|
|
491
|
+
readonly __wbg_get_reencryptionresponsepayload_signcrypted_ciphertext: (a: number, b: number) => void;
|
|
492
|
+
readonly __wbg_get_requestid_request_id: (a: number, b: number) => void;
|
|
493
|
+
readonly __wbg_get_reencryptionrequestpayload_client_address: (a: number, b: number) => void;
|
|
494
|
+
readonly __wbg_plaintext_free: (a: number, b: number) => void;
|
|
495
|
+
readonly __wbg_get_plaintext_bytes: (a: number, b: number) => void;
|
|
496
|
+
readonly __wbg_set_plaintext_bytes: (a: number, b: number, c: number) => void;
|
|
497
|
+
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
498
|
+
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
499
|
+
readonly __wbindgen_add_to_stack_pointer: (a: number) => number;
|
|
500
|
+
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
501
|
+
readonly __wbindgen_exn_store: (a: number) => void;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
export type SyncInitInput = BufferSource | WebAssembly.Module;
|
|
505
|
+
/**
|
|
506
|
+
* Instantiates the given `module`, which can either be bytes or
|
|
507
|
+
* a precompiled `WebAssembly.Module`.
|
|
508
|
+
*
|
|
509
|
+
* @param {{ module: SyncInitInput }} module - Passing `SyncInitInput` directly is deprecated.
|
|
510
|
+
*
|
|
511
|
+
* @returns {InitOutput}
|
|
512
|
+
*/
|
|
513
|
+
export function initSync(module: { module: SyncInitInput } | SyncInitInput): InitOutput;
|
|
514
|
+
|
|
515
|
+
/**
|
|
516
|
+
* If `module_or_path` is {RequestInfo} or {URL}, makes a request and
|
|
517
|
+
* for everything else, calls `WebAssembly.instantiate` directly.
|
|
518
|
+
*
|
|
519
|
+
* @param {{ module_or_path: InitInput | Promise<InitInput> }} module_or_path - Passing `InitInput` directly is deprecated.
|
|
520
|
+
*
|
|
521
|
+
* @returns {Promise<InitOutput>}
|
|
522
|
+
*/
|
|
523
|
+
export default function __wbg_init (module_or_path?: { module_or_path: InitInput | Promise<InitInput> } | InitInput | Promise<InitInput>): Promise<InitOutput>;
|