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
module Stubs = struct
type affine_array
type affine
type jacobian
external allocate_g1 : unit -> jacobian = "allocate_p1_stubs"
external allocate_g1_affine_contiguous_array : int -> affine_array
= "allocate_p1_affine_array_stubs"
external p1_affine_array_set_p1_points :
affine_array -> jacobian array -> int -> int
= "caml_blst_p1_affine_array_set_p1_points_stubs"
external allocate_g1_affine : unit -> affine = "allocate_p1_affine_stubs"
external from_affine : jacobian -> affine -> int
= "caml_blst_p1_from_affine_stubs"
external to_affine : affine -> jacobian -> int
= "caml_blst_p1_to_affine_stubs"
external double : jacobian -> jacobian -> int = "caml_blst_p1_double_stubs"
external dadd : jacobian -> jacobian -> jacobian -> int
= "caml_blst_p1_add_or_double_stubs"
external is_zero : jacobian -> bool = "caml_blst_p1_is_inf_stubs"
external in_g1 : jacobian -> bool = "caml_blst_p1_in_g1_stubs"
external equal : jacobian -> jacobian -> bool = "caml_blst_p1_equal_stubs"
external cneg : jacobian -> bool -> int = "caml_blst_p1_cneg_stubs"
external mult : jacobian -> jacobian -> Bytes.t -> Unsigned.Size_t.t -> int
= "caml_blst_p1_mult_stubs"
external deserialize : affine -> Bytes.t -> int
= "caml_blst_p1_deserialize_stubs"
external serialize : Bytes.t -> jacobian -> int
= "caml_blst_p1_serialize_stubs"
external compress : Bytes.t -> jacobian -> int = "caml_blst_p1_compress_stubs"
external uncompress : affine -> Bytes.t -> int
= "caml_blst_p1_uncompress_stubs"
external hash_to_curve :
jacobian ->
Bytes.t ->
Unsigned.Size_t.t ->
Bytes.t ->
Unsigned.Size_t.t ->
Bytes.t ->
Unsigned.Size_t.t ->
int
= "caml_blst_p1_hash_to_curve_stubs_bytecode" "caml_blst_p1_hash_to_curve_stubs"
external memcpy : jacobian -> jacobian -> int = "caml_blst_p1_memcpy_stubs"
external set_affine_coordinates : affine -> Fq.t -> Fq.t -> int
= "caml_blst_p1_set_coordinates_stubs"
external fft_inplace : jacobian array -> Fr.Stubs.fr array -> int -> int
= "caml_fft_g1_inplace_stubs"
external pippenger :
jacobian ->
jacobian array ->
Fr.t array ->
Unsigned.Size_t.t ->
Unsigned.Size_t.t ->
int = "caml_blst_g1_pippenger_stubs"
external continuous_array_get : jacobian -> affine_array -> int -> int
= "caml_blst_p1_affine_array_get_stubs"
external pippenger_with_affine_array :
jacobian ->
affine_array ->
Fr.t array ->
Unsigned.Size_t.t ->
Unsigned.Size_t.t ->
int = "caml_blst_g1_pippenger_contiguous_affine_array_stubs"
external mul_map_inplace : jacobian array -> Fr.Stubs.fr -> int -> int
= "caml_mul_map_g1_inplace_stubs"
end
module G1 = struct
exception Not_on_curve of Bytes.t
type t = Stubs.jacobian
type affine = Stubs.affine
type affine_array = Stubs.affine_array * int
let global_buffer = Stubs.allocate_g1 ()
let size_in_bytes = 96
let memcpy dst src = ignore @@ Stubs.memcpy dst src
let affine_of_jacobian j =
let b = Stubs.allocate_g1_affine () in
ignore @@ Stubs.to_affine b j ;
b
let jacobian_of_affine a =
let b = Stubs.allocate_g1 () in
ignore @@ Stubs.from_affine b a ;
b
let to_affine_array l =
let length = Array.length l in
let buffer = Stubs.allocate_g1_affine_contiguous_array length in
ignore @@ Stubs.p1_affine_array_set_p1_points buffer l length ;
(buffer, length)
let of_affine_array (l, n) =
Array.init n (fun i ->
let p = Stubs.allocate_g1 () in
ignore @@ Stubs.continuous_array_get p l i ;
p)
let size_of_affine_array (_, n) = n
let copy src =
let dst = Stubs.allocate_g1 () in
memcpy dst src ;
dst
module Scalar = Fr
let cofactor_fr = Scalar.of_string "76329603384216526031706109802092473003"
let check_bytes bs =
let buffer = Stubs.allocate_g1_affine () in
Stubs.deserialize buffer bs = 0
let of_bytes_opt bs =
let buffer_affine = Stubs.allocate_g1_affine () in
if Bytes.length bs <> size_in_bytes then None
else
let res = Stubs.deserialize buffer_affine bs in
if res = 0 then (
let buffer = Stubs.allocate_g1 () in
ignore @@ Stubs.from_affine buffer buffer_affine ;
let is_in_prime_subgroup = Stubs.in_g1 buffer in
if is_in_prime_subgroup then Some buffer else None)
else None
let of_bytes_exn bs =
match of_bytes_opt bs with None -> raise (Not_on_curve bs) | Some p -> p
let zero =
let bytes =
Bytes.of_string
"@\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
in
of_bytes_exn bytes
let one =
let bytes =
Bytes.of_string
"\023\241\211\1671\151\215\148&\149c\140O\169\172\015\195h\140O\151t\185\005\161N:?\023\027\172XlU\232?\249z\026\239\251:\240\n\
\219\"\198\187\b\179\244\129\227\170\160\241\160\1580\237t\029\138\228\252\245\224\149\213\208\n\
\246\000\219\024\203,\004\179\237\208<\199D\162\136\138\228\012\170#)F\197\231\225"
in
of_bytes_exn bytes
let size_in_memory = Obj.reachable_words (Obj.magic one) * 8
let of_compressed_bytes_opt bs =
let buffer_affine = Stubs.allocate_g1_affine () in
let res = Stubs.uncompress buffer_affine bs in
if res = 0 then (
let buffer = Stubs.allocate_g1 () in
ignore @@ Stubs.from_affine buffer buffer_affine ;
let is_in_prime_subgroup = Stubs.in_g1 buffer in
if is_in_prime_subgroup then Some buffer else None)
else None
let of_compressed_bytes_exn bs =
match of_compressed_bytes_opt bs with
| None -> raise (Not_on_curve bs)
| Some p -> p
let to_bytes p =
let buffer = Bytes.make size_in_bytes '\000' in
ignore @@ Stubs.serialize buffer p ;
buffer
let to_compressed_bytes p =
let buffer = Bytes.make (size_in_bytes / 2) '\000' in
ignore @@ Stubs.compress buffer p ;
buffer
let add x y =
let buffer = Stubs.allocate_g1 () in
ignore @@ Stubs.dadd buffer x y ;
buffer
let add_inplace x y =
ignore @@ Stubs.dadd global_buffer x y ;
memcpy x global_buffer
let add_bulk xs =
let buffer = Stubs.allocate_g1 () in
List.iter (fun x -> ignore @@ Stubs.dadd buffer buffer x) xs ;
buffer
let double x =
let buffer = Stubs.allocate_g1 () in
ignore @@ Stubs.double buffer x ;
buffer
let mul g n =
let buffer = Stubs.allocate_g1 () in
let bytes = Fr.to_bytes n in
ignore @@ Stubs.mult buffer g bytes (Unsigned.Size_t.of_int (32 * 8)) ;
buffer
let mul_inplace g n =
ignore
@@ Stubs.mult
global_buffer
g
(Fr.to_bytes n)
(Unsigned.Size_t.of_int (32 * 8)) ;
memcpy g global_buffer
let b = Fq.(one + one + one + one)
let rec random ?state () =
let x = Fq.random ?state () in
let xx = Fq.(x * x) in
let xxx = Fq.(x * xx) in
let xxx_plus_b = Fq.(xxx + b) in
let y_opt = Fq.sqrt_opt xxx_plus_b in
match y_opt with
| None -> random ?state ()
| Some y ->
let random_bool =
match state with
| None -> Random.bool ()
| Some state -> Random.State.bool state
in
let y = if random_bool then y else Fq.negate y in
let p_affine = Stubs.allocate_g1_affine () in
ignore @@ Stubs.set_affine_coordinates p_affine x y ;
let p = Stubs.allocate_g1 () in
ignore @@ Stubs.from_affine p p_affine ;
mul p cofactor_fr
let eq g1 g2 = Stubs.equal g1 g2
let is_zero x = eq x zero
let order_minus_one = Scalar.(negate one)
let negate g =
let buffer = copy g in
ignore @@ Stubs.cneg buffer true ;
buffer
let of_z_opt ~x ~y =
let x = Fq.of_z x in
let y = Fq.of_z y in
let buffer_affine = Stubs.allocate_g1_affine () in
ignore @@ Stubs.set_affine_coordinates buffer_affine x y ;
let buffer = Stubs.allocate_g1 () in
ignore @@ Stubs.from_affine buffer buffer_affine ;
if Stubs.in_g1 buffer then Some buffer else None
module M = struct
type group = t
type scalar = Scalar.t
let zero = zero
let inverse_exn_scalar = Scalar.inverse_exn
let scalar_of_z = Scalar.of_z
let fft_inplace = Stubs.fft_inplace
let mul_map_inplace = Stubs.mul_map_inplace
let copy = copy
end
let fft ~domain ~points = Fft.fft (module M) ~domain ~points
let fft_inplace ~domain ~points =
let logn = Z.log2 (Z.of_int (Array.length points)) in
ignore @@ Stubs.fft_inplace points domain logn
let ifft ~domain ~points = Fft.ifft (module M) ~domain ~points
let ifft_inplace ~domain ~points =
let n = Array.length points in
let logn = Z.log2 (Z.of_int n) in
let n_inv = Fr.inverse_exn (Fr.of_z (Z.of_int n)) in
ignore @@ Stubs.fft_inplace points domain logn ;
ignore @@ Stubs.mul_map_inplace points n_inv n
let hash_to_curve message dst =
let message_length = Bytes.length message in
let dst_length = Bytes.length dst in
let buffer = Stubs.allocate_g1 () in
ignore
@@ Stubs.hash_to_curve
buffer
message
(Unsigned.Size_t.of_int message_length)
dst
(Unsigned.Size_t.of_int dst_length)
Bytes.empty
Unsigned.Size_t.zero ;
buffer
let pippenger ?(start = 0) ?len ps ss =
let l_ss = Array.length ss in
let l_ps = Array.length ps in
let l = min l_ss l_ps in
let len = Option.value ~default:(l - start) len in
if start < 0 || len < 1 || start + len > l then
raise @@ Invalid_argument (Format.sprintf "start %i len %i" start len) ;
if len = 1 then mul ps.(start) ss.(start)
else
let buffer = Stubs.allocate_g1 () in
let res =
Stubs.pippenger
buffer
ps
ss
(Unsigned.Size_t.of_int start)
(Unsigned.Size_t.of_int len)
in
assert (res = 0) ;
buffer
let pippenger_with_affine_array ?(start = 0) ?len (ps, n) ss =
let l = min n (Array.length ss) in
let buffer = Stubs.allocate_g1 () in
let len = Option.value ~default:(l - start) len in
if start < 0 || len < 1 || start + len > n then
raise @@ Invalid_argument (Format.sprintf "start %i len %i" start len) ;
(if len = 1 then (
ignore @@ Stubs.continuous_array_get buffer ps start ;
mul_inplace buffer ss.(start))
else
let res =
Stubs.pippenger_with_affine_array
buffer
ps
ss
(Unsigned.Size_t.of_int start)
(Unsigned.Size_t.of_int len)
in
assert (res = 0)) ;
buffer
end
include G1