-
Notifications
You must be signed in to change notification settings - Fork 557
/
Copy pathkimchi_bindings.ml
581 lines (464 loc) · 18.9 KB
/
kimchi_bindings.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
(* This file is generated automatically with ocaml_gen. *)
module FieldVectors = struct
module Fp = struct
type nonrec t
type nonrec elt = Pasta_bindings.Fp.t
external create : unit -> t = "caml_fp_vector_create"
external length : t -> int = "caml_fp_vector_length"
external emplace_back : t -> elt -> unit = "caml_fp_vector_emplace_back"
external get : t -> int -> elt = "caml_fp_vector_get"
external set : t -> int -> elt -> unit = "caml_fp_vector_set"
end
module Fq = struct
type nonrec t
type nonrec elt = Pasta_bindings.Fq.t
external create : unit -> t = "caml_fq_vector_create"
external length : t -> int = "caml_fq_vector_length"
external emplace_back : t -> elt -> unit = "caml_fq_vector_emplace_back"
external get : t -> int -> elt = "caml_fq_vector_get"
external set : t -> int -> elt -> unit = "caml_fq_vector_set"
end
end
module Protocol = struct
module Gates = struct
module Vector = struct
module Fp = struct
type nonrec t
type nonrec elt = Pasta_bindings.Fp.t Kimchi_types.circuit_gate
external create : unit -> t = "caml_pasta_fp_plonk_gate_vector_create"
external add : t -> elt -> unit = "caml_pasta_fp_plonk_gate_vector_add"
external get : t -> int -> elt = "caml_pasta_fp_plonk_gate_vector_get"
external len : t -> int = "caml_pasta_fp_plonk_gate_vector_len"
external wrap : t -> Kimchi_types.wire -> Kimchi_types.wire -> unit
= "caml_pasta_fp_plonk_gate_vector_wrap"
external digest : int -> t -> bytes
= "caml_pasta_fp_plonk_gate_vector_digest"
external to_json : int -> t -> string
= "caml_pasta_fp_plonk_circuit_serialize"
end
module Fq = struct
type nonrec t
type nonrec elt = Pasta_bindings.Fq.t Kimchi_types.circuit_gate
external create : unit -> t = "caml_pasta_fq_plonk_gate_vector_create"
external add : t -> elt -> unit = "caml_pasta_fq_plonk_gate_vector_add"
external get : t -> int -> elt = "caml_pasta_fq_plonk_gate_vector_get"
external len : t -> int = "caml_pasta_fq_plonk_gate_vector_len"
external wrap : t -> Kimchi_types.wire -> Kimchi_types.wire -> unit
= "caml_pasta_fq_plonk_gate_vector_wrap"
external digest : int -> t -> bytes
= "caml_pasta_fq_plonk_gate_vector_digest"
external to_json : int -> t -> string
= "caml_pasta_fq_plonk_circuit_serialize"
end
end
end
module SRS = struct
module Fp = struct
type nonrec t
module Poly_comm = struct
type nonrec t =
Pasta_bindings.Fp.t Kimchi_types.or_infinity Kimchi_types.poly_comm
end
external create : int -> t = "caml_fp_srs_create"
external write : bool option -> t -> string -> unit = "caml_fp_srs_write"
external read : int option -> string -> t option = "caml_fp_srs_read"
external lagrange_commitment :
t
-> int
-> int
-> Pasta_bindings.Fq.t Kimchi_types.or_infinity Kimchi_types.poly_comm
= "caml_fp_srs_lagrange_commitment"
external lagrange_commitments_whole_domain :
t
-> int
-> Pasta_bindings.Fq.t Kimchi_types.or_infinity Kimchi_types.poly_comm
array = "caml_fp_srs_lagrange_commitments_whole_domain"
external add_lagrange_basis : t -> int -> unit
= "caml_fp_srs_add_lagrange_basis"
external commit_evaluations :
t
-> int
-> Pasta_bindings.Fp.t array
-> Pasta_bindings.Fq.t Kimchi_types.or_infinity Kimchi_types.poly_comm
= "caml_fp_srs_commit_evaluations"
external b_poly_commitment :
t
-> Pasta_bindings.Fp.t array
-> Pasta_bindings.Fq.t Kimchi_types.or_infinity Kimchi_types.poly_comm
= "caml_fp_srs_b_poly_commitment"
external batch_accumulator_check :
t
-> Pasta_bindings.Fq.t Kimchi_types.or_infinity array
-> Pasta_bindings.Fp.t array
-> bool = "caml_fp_srs_batch_accumulator_check"
external batch_accumulator_generate :
t
-> int
-> Pasta_bindings.Fp.t array
-> Pasta_bindings.Fq.t Kimchi_types.or_infinity array
= "caml_fp_srs_batch_accumulator_generate"
external urs_h : t -> Pasta_bindings.Fq.t Kimchi_types.or_infinity
= "caml_fp_srs_h"
end
module Fq = struct
type nonrec t
external create : int -> t = "caml_fq_srs_create"
external write : bool option -> t -> string -> unit = "caml_fq_srs_write"
external read : int option -> string -> t option = "caml_fq_srs_read"
external lagrange_commitment :
t
-> int
-> int
-> Pasta_bindings.Fp.t Kimchi_types.or_infinity Kimchi_types.poly_comm
= "caml_fq_srs_lagrange_commitment"
external lagrange_commitments_whole_domain :
t
-> int
-> Pasta_bindings.Fp.t Kimchi_types.or_infinity Kimchi_types.poly_comm
array = "caml_fq_srs_lagrange_commitments_whole_domain"
external add_lagrange_basis : t -> int -> unit
= "caml_fq_srs_add_lagrange_basis"
external commit_evaluations :
t
-> int
-> Pasta_bindings.Fq.t array
-> Pasta_bindings.Fp.t Kimchi_types.or_infinity Kimchi_types.poly_comm
= "caml_fq_srs_commit_evaluations"
external b_poly_commitment :
t
-> Pasta_bindings.Fq.t array
-> Pasta_bindings.Fp.t Kimchi_types.or_infinity Kimchi_types.poly_comm
= "caml_fq_srs_b_poly_commitment"
external batch_accumulator_check :
t
-> Pasta_bindings.Fp.t Kimchi_types.or_infinity array
-> Pasta_bindings.Fq.t array
-> bool = "caml_fq_srs_batch_accumulator_check"
external batch_accumulator_generate :
t
-> int
-> Pasta_bindings.Fq.t array
-> Pasta_bindings.Fp.t Kimchi_types.or_infinity array
= "caml_fq_srs_batch_accumulator_generate"
external urs_h : t -> Pasta_bindings.Fp.t Kimchi_types.or_infinity
= "caml_fq_srs_h"
end
end
module Index = struct
module Fp = struct
type nonrec t
external create :
Gates.Vector.Fp.t
-> int
-> Pasta_bindings.Fp.t Kimchi_types.lookup_table array
-> Pasta_bindings.Fp.t Kimchi_types.runtime_table_cfg array
-> int
-> SRS.Fp.t
-> t
= "caml_pasta_fp_plonk_index_create_bytecode" "caml_pasta_fp_plonk_index_create"
external max_degree : t -> int = "caml_pasta_fp_plonk_index_max_degree"
external public_inputs : t -> int
= "caml_pasta_fp_plonk_index_public_inputs"
external domain_d1_size : t -> int
= "caml_pasta_fp_plonk_index_domain_d1_size"
external domain_d4_size : t -> int
= "caml_pasta_fp_plonk_index_domain_d4_size"
external domain_d8_size : t -> int
= "caml_pasta_fp_plonk_index_domain_d8_size"
external read : int option -> SRS.Fp.t -> string -> t
= "caml_pasta_fp_plonk_index_read"
external write : bool option -> t -> string -> unit
= "caml_pasta_fp_plonk_index_write"
end
module Fq = struct
type nonrec t
external create :
Gates.Vector.Fq.t
-> int
-> Pasta_bindings.Fq.t Kimchi_types.lookup_table array
-> Pasta_bindings.Fq.t Kimchi_types.runtime_table_cfg array
-> int
-> SRS.Fq.t
-> t
= "caml_pasta_fq_plonk_index_create_bytecode" "caml_pasta_fq_plonk_index_create"
external max_degree : t -> int = "caml_pasta_fq_plonk_index_max_degree"
external public_inputs : t -> int
= "caml_pasta_fq_plonk_index_public_inputs"
external domain_d1_size : t -> int
= "caml_pasta_fq_plonk_index_domain_d1_size"
external domain_d4_size : t -> int
= "caml_pasta_fq_plonk_index_domain_d4_size"
external domain_d8_size : t -> int
= "caml_pasta_fq_plonk_index_domain_d8_size"
external read : int option -> SRS.Fq.t -> string -> t
= "caml_pasta_fq_plonk_index_read"
external write : bool option -> t -> string -> unit
= "caml_pasta_fq_plonk_index_write"
end
end
module VerifierIndex = struct
module Fp = struct
type nonrec t =
( Pasta_bindings.Fp.t
, SRS.Fp.t
, Pasta_bindings.Fq.t Kimchi_types.or_infinity Kimchi_types.poly_comm
)
Kimchi_types.VerifierIndex.verifier_index
external create : Index.Fp.t -> t
= "caml_pasta_fp_plonk_verifier_index_create"
external read : int option -> SRS.Fp.t -> string -> t
= "caml_pasta_fp_plonk_verifier_index_read"
external write : bool option -> t -> string -> unit
= "caml_pasta_fp_plonk_verifier_index_write"
external shifts : int -> Pasta_bindings.Fp.t array
= "caml_pasta_fp_plonk_verifier_index_shifts"
external dummy : unit -> t = "caml_pasta_fp_plonk_verifier_index_dummy"
external deep_copy : t -> t
= "caml_pasta_fp_plonk_verifier_index_deep_copy"
end
module Fq = struct
type nonrec t =
( Pasta_bindings.Fq.t
, SRS.Fq.t
, Pasta_bindings.Fp.t Kimchi_types.or_infinity Kimchi_types.poly_comm
)
Kimchi_types.VerifierIndex.verifier_index
external create : Index.Fq.t -> t
= "caml_pasta_fq_plonk_verifier_index_create"
external read : int option -> SRS.Fq.t -> string -> t
= "caml_pasta_fq_plonk_verifier_index_read"
external write : bool option -> t -> string -> unit
= "caml_pasta_fq_plonk_verifier_index_write"
external shifts : int -> Pasta_bindings.Fq.t array
= "caml_pasta_fq_plonk_verifier_index_shifts"
external dummy : unit -> t = "caml_pasta_fq_plonk_verifier_index_dummy"
external deep_copy : t -> t
= "caml_pasta_fq_plonk_verifier_index_deep_copy"
end
end
module Oracles = struct
module Fp = struct
type nonrec t = Pasta_bindings.Fp.t Kimchi_types.oracles
external create :
Pasta_bindings.Fq.t Kimchi_types.or_infinity Kimchi_types.poly_comm
array
-> ( Pasta_bindings.Fp.t
, SRS.Fp.t
, Pasta_bindings.Fq.t Kimchi_types.or_infinity Kimchi_types.poly_comm
)
Kimchi_types.VerifierIndex.verifier_index
-> ( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.prover_proof
-> t = "fp_oracles_create_no_public"
external create_with_public_evals :
Pasta_bindings.Fq.t Kimchi_types.or_infinity Kimchi_types.poly_comm
array
-> ( Pasta_bindings.Fp.t
, SRS.Fp.t
, Pasta_bindings.Fq.t Kimchi_types.or_infinity Kimchi_types.poly_comm
)
Kimchi_types.VerifierIndex.verifier_index
-> ( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.proof_with_public
-> t = "fp_oracles_create"
external dummy : unit -> Pasta_bindings.Fp.t Kimchi_types.random_oracles
= "fp_oracles_dummy"
external deep_copy :
Pasta_bindings.Fp.t Kimchi_types.random_oracles
-> Pasta_bindings.Fp.t Kimchi_types.random_oracles
= "fp_oracles_deep_copy"
end
module Fq = struct
type nonrec t = Pasta_bindings.Fq.t Kimchi_types.oracles
external create :
Pasta_bindings.Fp.t Kimchi_types.or_infinity Kimchi_types.poly_comm
array
-> ( Pasta_bindings.Fq.t
, SRS.Fq.t
, Pasta_bindings.Fp.t Kimchi_types.or_infinity Kimchi_types.poly_comm
)
Kimchi_types.VerifierIndex.verifier_index
-> ( Pasta_bindings.Fp.t Kimchi_types.or_infinity
, Pasta_bindings.Fq.t )
Kimchi_types.prover_proof
-> t = "fq_oracles_create_no_public"
external create_with_public_evals :
Pasta_bindings.Fp.t Kimchi_types.or_infinity Kimchi_types.poly_comm
array
-> ( Pasta_bindings.Fq.t
, SRS.Fq.t
, Pasta_bindings.Fp.t Kimchi_types.or_infinity Kimchi_types.poly_comm
)
Kimchi_types.VerifierIndex.verifier_index
-> ( Pasta_bindings.Fp.t Kimchi_types.or_infinity
, Pasta_bindings.Fq.t )
Kimchi_types.proof_with_public
-> t = "fq_oracles_create"
external dummy : unit -> Pasta_bindings.Fq.t Kimchi_types.random_oracles
= "fq_oracles_dummy"
external deep_copy :
Pasta_bindings.Fq.t Kimchi_types.random_oracles
-> Pasta_bindings.Fq.t Kimchi_types.random_oracles
= "fq_oracles_deep_copy"
end
end
module Proof = struct
module Fp = struct
external create :
Index.Fp.t
-> FieldVectors.Fp.t array
-> Pasta_bindings.Fp.t Kimchi_types.runtime_table array
-> Pasta_bindings.Fp.t array
-> Pasta_bindings.Fq.t Kimchi_types.or_infinity array
-> ( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.proof_with_public = "caml_pasta_fp_plonk_proof_create"
external create_and_verify :
Index.Fp.t
-> FieldVectors.Fp.t array
-> Pasta_bindings.Fp.t Kimchi_types.runtime_table array
-> Pasta_bindings.Fp.t array
-> Pasta_bindings.Fq.t Kimchi_types.or_infinity array
-> ( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.proof_with_public
= "caml_pasta_fp_plonk_proof_create_and_verify"
external example_with_lookup :
SRS.Fp.t
-> Index.Fp.t
* Pasta_bindings.Fp.t
* ( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.proof_with_public
= "caml_pasta_fp_plonk_proof_example_with_lookup"
external example_with_ffadd :
SRS.Fp.t
-> Index.Fp.t
* Pasta_bindings.Fp.t
* ( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.proof_with_public
= "caml_pasta_fp_plonk_proof_example_with_ffadd"
external example_with_xor :
SRS.Fp.t
-> Index.Fp.t
* (Pasta_bindings.Fp.t * Pasta_bindings.Fp.t)
* ( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.proof_with_public
= "caml_pasta_fp_plonk_proof_example_with_xor"
external example_with_rot :
SRS.Fp.t
-> Index.Fp.t
* (Pasta_bindings.Fp.t * Pasta_bindings.Fp.t)
* ( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.proof_with_public
= "caml_pasta_fp_plonk_proof_example_with_rot"
external example_with_foreign_field_mul :
SRS.Fp.t
-> Index.Fp.t
* ( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.proof_with_public
= "caml_pasta_fp_plonk_proof_example_with_foreign_field_mul"
external example_with_range_check :
SRS.Fp.t
-> Index.Fp.t
* ( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.proof_with_public
= "caml_pasta_fp_plonk_proof_example_with_range_check"
external example_with_range_check0 :
SRS.Fp.t
-> Index.Fp.t
* ( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.proof_with_public
= "caml_pasta_fp_plonk_proof_example_with_range_check0"
external verify :
( Pasta_bindings.Fp.t
, SRS.Fp.t
, Pasta_bindings.Fq.t Kimchi_types.or_infinity Kimchi_types.poly_comm
)
Kimchi_types.VerifierIndex.verifier_index
-> ( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.proof_with_public
-> bool = "caml_pasta_fp_plonk_proof_verify"
external batch_verify :
( Pasta_bindings.Fp.t
, SRS.Fp.t
, Pasta_bindings.Fq.t Kimchi_types.or_infinity Kimchi_types.poly_comm
)
Kimchi_types.VerifierIndex.verifier_index
array
-> ( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.proof_with_public
array
-> bool = "caml_pasta_fp_plonk_proof_batch_verify"
external dummy :
unit
-> ( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.proof_with_public = "caml_pasta_fp_plonk_proof_dummy"
external deep_copy :
( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.proof_with_public
-> ( Pasta_bindings.Fq.t Kimchi_types.or_infinity
, Pasta_bindings.Fp.t )
Kimchi_types.proof_with_public
= "caml_pasta_fp_plonk_proof_deep_copy"
end
module Fq = struct
external create :
Index.Fq.t
-> FieldVectors.Fq.t array
-> Pasta_bindings.Fq.t Kimchi_types.runtime_table array
-> Pasta_bindings.Fq.t array
-> Pasta_bindings.Fp.t Kimchi_types.or_infinity array
-> ( Pasta_bindings.Fp.t Kimchi_types.or_infinity
, Pasta_bindings.Fq.t )
Kimchi_types.proof_with_public = "caml_pasta_fq_plonk_proof_create"
external verify :
( Pasta_bindings.Fq.t
, SRS.Fq.t
, Pasta_bindings.Fp.t Kimchi_types.or_infinity Kimchi_types.poly_comm
)
Kimchi_types.VerifierIndex.verifier_index
-> ( Pasta_bindings.Fp.t Kimchi_types.or_infinity
, Pasta_bindings.Fq.t )
Kimchi_types.proof_with_public
-> bool = "caml_pasta_fq_plonk_proof_verify"
external batch_verify :
( Pasta_bindings.Fq.t
, SRS.Fq.t
, Pasta_bindings.Fp.t Kimchi_types.or_infinity Kimchi_types.poly_comm
)
Kimchi_types.VerifierIndex.verifier_index
array
-> ( Pasta_bindings.Fp.t Kimchi_types.or_infinity
, Pasta_bindings.Fq.t )
Kimchi_types.proof_with_public
array
-> bool = "caml_pasta_fq_plonk_proof_batch_verify"
external dummy :
unit
-> ( Pasta_bindings.Fp.t Kimchi_types.or_infinity
, Pasta_bindings.Fq.t )
Kimchi_types.proof_with_public = "caml_pasta_fq_plonk_proof_dummy"
external deep_copy :
( Pasta_bindings.Fp.t Kimchi_types.or_infinity
, Pasta_bindings.Fq.t )
Kimchi_types.proof_with_public
-> ( Pasta_bindings.Fp.t Kimchi_types.or_infinity
, Pasta_bindings.Fq.t )
Kimchi_types.proof_with_public
= "caml_pasta_fq_plonk_proof_deep_copy"
end
end
end