Source file blake2B.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
open Error_monad
open Hacl
module type Name = sig
val name : string
val title : string
val size : int option
end
module type PrefixedName = sig
include Name
val b58check_prefix : string
end
module Make_minimal (K : Name) = struct
type t = Blake2b.hash
include K
let size = match K.size with None -> 32 | Some x -> x
let of_string_opt s =
if String.length s <> size then None
else Some (Blake2b.Hash (Bytes.of_string s))
let of_string s =
match of_string_opt s with
| None ->
error_with
"%s.of_string: wrong string size (%d instead of %d)"
K.name
(String.length s)
size
| Some h -> Ok h
let of_string_exn s =
match of_string_opt s with
| None ->
Format.kasprintf
invalid_arg
"%s.of_string_exn: wrong string size (%d instead of %d)"
K.name
(String.length s)
size
| Some h -> h
let to_string (Blake2b.Hash h) = Bytes.to_string h
let of_hex s =
match Hex.to_string s with
| Some s -> of_string s
| None -> error_with "%s.of_hex: invalid hex string (%a)" K.name Hex.pp s
let of_hex_opt s = Option.bind (Hex.to_string s) of_string_opt
let of_hex_exn s =
match Hex.to_string s with
| Some s -> of_string_exn s
| None ->
Format.kasprintf
invalid_arg
"%s.of_hex_exn: invalid hex string (%a)"
K.name
Hex.pp
s
let to_hex s = Hex.of_string (to_string s)
let pp ppf h =
let (`Hex h) = to_hex h in
Format.pp_print_string ppf h
let pp_short ppf h =
let (`Hex h) = to_hex h in
Format.pp_print_string ppf (String.sub h 0 8)
let of_bytes_opt b =
if Bytes.length b <> size then None else Some (Blake2b.Hash b)
let of_bytes_exn b =
match of_bytes_opt b with
| None ->
let msg =
Printf.sprintf
"%s.of_bytes_exn: wrong string size (%d instead of %d)"
K.name
(Bytes.length b)
size
in
raise (Invalid_argument msg)
| Some h -> h
let of_bytes s =
match of_bytes_opt s with
| Some x -> Ok x
| None -> error_with "Failed to deserialize a hash (%s)" K.name
let to_bytes (Blake2b.Hash h) = h
let hash_bytes ?key l =
let input = Bytes.concat Bytes.empty l in
Blake2b.direct ?key input size
let hash_string ?key l =
let key = Option.map Bytes.of_string key in
let input = String.concat "" l in
Blake2b.direct ?key (Bytes.of_string input) size
let path_length = 6
(** Converts [key] to hex thus doubling its size then splits it into a list of
length [path_length] where each element is one byte, or two characters,
except the last one which contains the rest. *)
let to_path key l =
let (`Hex key) = to_hex key in
String.sub key 0 2 :: String.sub key 2 2 :: String.sub key 4 2
:: String.sub key 6 2 :: String.sub key 8 2
:: String.sub key 10 ((size * 2) - 10)
:: l
let of_path path =
let path = String.concat "" path in
of_hex_opt (`Hex path)
let of_path_exn path =
let path = String.concat "" path in
of_hex_exn (`Hex path)
let prefix_path p =
let (`Hex p) = Hex.of_string p in
let len = String.length p in
let p1 = if len >= 2 then String.sub p 0 2 else ""
and p2 = if len >= 4 then String.sub p 2 2 else ""
and p3 = if len >= 6 then String.sub p 4 2 else ""
and p4 = if len >= 8 then String.sub p 6 2 else ""
and p5 = if len >= 10 then String.sub p 8 2 else ""
and p6 =
if len > 10 then String.sub p 10 (min (len - 10) ((size * 2) - 10))
else ""
in
[p1; p2; p3; p4; p5; p6]
let zero = of_hex_exn (`Hex (String.make (size * 2) '0'))
include Compare.Make (struct
type nonrec t = t
let compare (Blake2b.Hash h1) (Blake2b.Hash h2) = Bytes.compare h1 h2
end)
end
module type Register = sig
val register_encoding :
prefix:string ->
length:int ->
to_raw:('a -> string) ->
of_raw:(string -> 'a option) ->
wrap:('a -> Base58.data) ->
'a Base58.encoding
end
module Make (R : Register) (K : PrefixedName) = struct
include Make_minimal (K)
let hash = Stdlib.Hashtbl.hash
let seeded_hash = Stdlib.Hashtbl.seeded_hash
let raw_encoding =
let open Data_encoding in
conv to_bytes of_bytes_exn (Fixed.bytes size)
type Base58.data += Data of t
let b58check_encoding =
R.register_encoding
~prefix:K.b58check_prefix
~length:size
~wrap:(fun s -> Data s)
~of_raw:of_string_opt
~to_raw:to_string
include Helpers.Make (struct
type nonrec t = t
let title = title
let name = name
let b58check_encoding = b58check_encoding
let raw_encoding = raw_encoding
let compare = compare
let equal = equal
let hash = hash
let seeded_hash = seeded_hash
end)
end
module Generic_Merkle_tree (H : sig
type t
type elt
val empty : t
val leaf : elt -> t
val node : t -> t -> t
end) =
struct
let rec step a n =
let m = (n + 1) / 2 in
for i = 0 to m - 1 do
a.(i) <- H.node a.(2 * i) a.((2 * i) + 1)
done ;
a.(m) <- H.node a.(n) a.(n) ;
if m = 1 then a.(0)
else if m mod 2 = 0 then step a m
else (
a.(m + 1) <- a.(m) ;
step a (m + 1))
let empty = H.empty
let compute xs =
match xs with
| [] -> H.empty
| [x] -> H.leaf x
| _ :: one :: rest ->
let last = List.last one rest in
let n = List.length xs in
let a = Array.make (n + 1) (H.leaf last) in
List.iteri (fun i x -> a.(i) <- H.leaf x) xs ;
step a n
type path = Left of path * H.t | Right of H.t * path | Op
let rec step_path a n p j =
let m = (n + 1) / 2 in
let p = if j mod 2 = 0 then Left (p, a.(j + 1)) else Right (a.(j - 1), p) in
for i = 0 to m - 1 do
a.(i) <- H.node a.(2 * i) a.((2 * i) + 1)
done ;
a.(m) <- H.node a.(n) a.(n) ;
if m = 1 then p
else if m mod 2 = 0 then step_path a m p (j / 2)
else (
a.(m + 1) <- a.(m) ;
step_path a (m + 1) p (j / 2))
let compute_path xs i =
match xs with
| [] -> invalid_arg "compute_path"
| [_] -> Op
| _ :: one :: rest ->
let last = List.last one rest in
let n = List.length xs in
if i < 0 || n <= i then invalid_arg "compute_path" ;
let a = Array.make (n + 1) (H.leaf last) in
List.iteri (fun i x -> a.(i) <- H.leaf x) xs ;
step_path a n Op i
let rec check_path p h =
match p with
| Op -> (H.leaf h, 1, 0)
| Left (p, r) ->
let l, s, pos = check_path p h in
(H.node l r, s * 2, pos)
| Right (l, p) ->
let r, s, pos = check_path p h in
(H.node l r, s * 2, pos + s)
let check_path p h =
let h, _, pos = check_path p h in
(h, pos)
end
let rec log2 x = if x <= 1 then 0 else 1 + log2 ((x + 1) / 2)
module Make_merkle_tree (R : sig
val register_encoding :
prefix:string ->
length:int ->
to_raw:('a -> string) ->
of_raw:(string -> 'a option) ->
wrap:('a -> Base58.data) ->
'a Base58.encoding
end)
(K : PrefixedName) (Contents : sig
type t
val to_bytes : t -> Bytes.t
end) =
struct
include Make (R) (K)
type elt = Contents.t
let elt_bytes = Contents.to_bytes
let empty = hash_bytes []
include Generic_Merkle_tree (struct
type nonrec t = t
type nonrec elt = elt
let empty = empty
let leaf x = hash_bytes [Contents.to_bytes x]
let node x y = hash_bytes [to_bytes x; to_bytes y]
end)
let path_encoding =
let open Data_encoding in
mu "path" (fun path_encoding ->
union
[
case
(Tag 240)
~title:"Left"
(obj2 (req "path" path_encoding) (req "right" encoding))
(function Left (p, r) -> Some (p, r) | _ -> None)
(fun (p, r) -> Left (p, r));
case
(Tag 15)
~title:"Right"
(obj2 (req "left" encoding) (req "path" path_encoding))
(function Right (r, p) -> Some (r, p) | _ -> None)
(fun (r, p) -> Right (r, p));
case
(Tag 0)
~title:"Op"
unit
(function Op -> Some () | _ -> None)
(fun () -> Op);
])
let bounded_path_encoding ?max_length () =
match max_length with
| None -> path_encoding
| Some max_length ->
let max_depth = log2 max_length in
Data_encoding.check_size ((max_depth * (size + 1)) + 1) path_encoding
end
include Make_minimal (struct
let name = "Generic_hash"
let title = ""
let size = None
end)
let pp ppf h =
let (`Hex h) = to_hex h in
Format.pp_print_string ppf h
let pp_short ppf h =
let (`Hex h) = to_hex h in
Format.pp_print_string ppf (String.sub h 0 8)