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
module Stubs = struct
type affine
type affine_array
type jacobian
external allocate_g2 : unit -> jacobian = "allocate_p2_stubs"
external allocate_g2_affine : unit -> affine = "allocate_p2_affine_stubs"
external allocate_g2_affine_contiguous_array : int -> affine_array
= "allocate_p2_affine_array_stubs"
external p2_affine_array_set_p2_points :
affine_array -> jacobian array -> int -> int
= "caml_blst_p2_affine_array_set_p2_points_stubs"
external from_affine : jacobian -> affine -> int
= "caml_blst_p2_from_affine_stubs"
external to_affine : affine -> jacobian -> int
= "caml_blst_p2_to_affine_stubs"
external double : jacobian -> jacobian -> int = "caml_blst_p2_double_stubs"
external dadd : jacobian -> jacobian -> jacobian -> int
= "caml_blst_p2_add_or_double_stubs"
external is_zero : jacobian -> bool = "caml_blst_p2_is_inf_stubs"
external in_g2 : jacobian -> bool = "caml_blst_p2_in_g2_stubs"
external equal : jacobian -> jacobian -> bool = "caml_blst_p2_equal_stubs"
external cneg : jacobian -> bool -> int = "caml_blst_p2_cneg_stubs"
external mult : jacobian -> jacobian -> Bytes.t -> Unsigned.Size_t.t -> int
= "caml_blst_p2_mult_stubs"
external deserialize : affine -> Bytes.t -> int
= "caml_blst_p2_deserialize_stubs"
external serialize : Bytes.t -> jacobian -> int
= "caml_blst_p2_serialize_stubs"
external compress : Bytes.t -> jacobian -> int = "caml_blst_p2_compress_stubs"
external uncompress : affine -> Bytes.t -> int
= "caml_blst_p2_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_p2_hash_to_curve_stubs_bytecode" "caml_blst_p2_hash_to_curve_stubs"
external memcpy : jacobian -> jacobian -> int = "caml_blst_p2_memcpy_stubs"
external set_affine_coordinates : affine -> Fq2.t -> Fq2.t -> int
= "caml_blst_p2_set_coordinates_stubs"
external pippenger :
jacobian ->
jacobian array ->
Fr.t array ->
Unsigned.Size_t.t ->
Unsigned.Size_t.t ->
int = "caml_blst_g2_pippenger_stubs"
external continuous_array_get : jacobian -> affine_array -> int -> int
= "caml_blst_p2_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_g2_pippenger_contiguous_affine_array_stubs"
end
module G2 = struct
type t = Stubs.jacobian
type affine = Stubs.affine
type affine_array = Stubs.affine_array * int
exception Not_on_curve of Bytes.t
let size_in_bytes = 192
let compressed_size_in_bytes = 96
let affine_of_jacobian j =
let b = Stubs.allocate_g2_affine () in
ignore @@ Stubs.to_affine b j ;
b
let jacobian_of_affine a =
let b = Stubs.allocate_g2 () in
ignore @@ Stubs.from_affine b a ;
b
let memcpy dst src = ignore @@ Stubs.memcpy dst src
let to_affine_array l =
let length = Array.length l in
let buffer = Stubs.allocate_g2_affine_contiguous_array length in
ignore @@ Stubs.p2_affine_array_set_p2_points buffer l length ;
(buffer, length)
let of_affine_array (l, n) =
Array.init n (fun i ->
let p = Stubs.allocate_g2 () in
ignore @@ Stubs.continuous_array_get p l i ;
p)
let size_of_affine_array (_, n) = n
let copy src =
let dst = Stubs.allocate_g2 () in
memcpy dst src ;
dst
let global_buffer = Stubs.allocate_g2 ()
module Scalar = Fr
let check_bytes bs =
let buffer = Stubs.allocate_g2_affine () in
Stubs.deserialize buffer bs = 0
let of_bytes_opt bs =
let buffer_affine = Stubs.allocate_g2_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_g2 () in
ignore @@ Stubs.from_affine buffer buffer_affine ;
let is_in_prime_subgroup = Stubs.in_g2 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 of_compressed_bytes_opt bs =
let buffer_affine = Stubs.allocate_g2_affine () in
let res = Stubs.uncompress buffer_affine bs in
if res = 0 then (
let buffer = Stubs.allocate_g2 () in
ignore @@ Stubs.from_affine buffer buffer_affine ;
let is_in_prime_subgroup = Stubs.in_g2 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 zero =
let bytes =
Bytes.of_string
"\192\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_compressed_bytes_exn bytes
let one =
let bytes =
Bytes.of_string
"\147\224+`Rq\159`}\172\211\160\136'OeYk\208\208\153 \
\182\026\181\218a\187\220\127PI3L\241\018\019\148]W\229\172}\005]\004+~\002J\162\178\240\143\n\
\145&\b\005'-\197\016Q\198\228z\212\250@;\
\002\180Q\011dz\227\209w\011\172\003&\168\005\187\239\212\128V\200\193!\189\184"
in
of_compressed_bytes_exn bytes
let size_in_memory = Obj.reachable_words (Obj.repr one) * 8
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_g2 () 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_g2 () in
List.iter (fun x -> ignore @@ Stubs.dadd buffer buffer x) xs ;
buffer
let double x =
let buffer = Stubs.allocate_g2 () in
ignore @@ Stubs.double buffer x ;
buffer
let mul_bits g bytes =
let buffer = Stubs.allocate_g2 () in
ignore
@@ Stubs.mult
buffer
g
bytes
(Unsigned.Size_t.of_int (Bytes.length bytes * 8)) ;
buffer
let mul g n =
let bytes = Fr.to_bytes n in
mul_bits g bytes
let mul_inplace g n =
let bytes = Fr.to_bytes n in
ignore
@@ Stubs.mult
global_buffer
g
bytes
(Unsigned.Size_t.of_int (Bytes.length bytes * 8)) ;
memcpy g global_buffer
let b =
let buffer = Fq2.Stubs.allocate_fp2 () in
let fq_four = Fq.(one + one + one + one) in
let bytes = Fq.to_bytes fq_four in
ignore @@ Fq2.Stubs.of_bytes_components buffer bytes bytes ;
buffer
let clear_cofactor p =
let bytes =
Z.of_string_base
16
"5d543a95414e7f1091d50792876a202cd91de4547085abaa68a205b2e5a7ddfa628f1cb4d9e82ef21537e293a6691ae1616ec6e786f0c70cf1c38e31c7238e5"
in
let bytes = Bytes.of_string (Z.to_bits bytes) in
let res = mul_bits p bytes in
res
let rec random ?state () =
let x = Fq2.random ?state () in
let xx = Fq2.(x * x) in
let xxx = Fq2.(x * xx) in
let xxx_plus_b = Fq2.(xxx + b) in
let y_opt = Fq2.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 Fq2.negate y in
let p_affine = Stubs.allocate_g2_affine () in
ignore @@ Stubs.set_affine_coordinates p_affine x y ;
let p = Stubs.allocate_g2 () in
ignore @@ Stubs.from_affine p p_affine ;
let p = clear_cofactor p in
p
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 x1, x2 = x in
let y1, y2 = y in
let x1_bytes = Bytes.of_string (Z.to_bits x1) in
let x2_bytes = Bytes.of_string (Z.to_bits x2) in
let y1_bytes = Bytes.of_string (Z.to_bits y1) in
let y2_bytes = Bytes.of_string (Z.to_bits y2) in
let x = Fq2.Stubs.allocate_fp2 () in
let y = Fq2.Stubs.allocate_fp2 () in
ignore @@ Fq2.Stubs.of_bytes_components x x1_bytes x2_bytes ;
ignore @@ Fq2.Stubs.of_bytes_components y y1_bytes y2_bytes ;
let p_affine = Stubs.allocate_g2_affine () in
ignore @@ Stubs.set_affine_coordinates p_affine x y ;
let p = Stubs.allocate_g2 () in
ignore @@ Stubs.from_affine p p_affine ;
let is_ok = Stubs.in_g2 p in
if is_ok then Some p else None
let hash_to_curve message dst =
let message_length = Bytes.length message in
let dst_length = Bytes.length dst in
let buffer = Stubs.allocate_g2 () 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_g2 () 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_g2 () 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 G2