Source file digestif.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
module type S = Digestif_sig.S
module type T = Digestif_sig.T
module Bi = Digestif_bigstring
module By = Digestif_bytes
module Pp = Digestif_pp
module Native = Rakia_native
module type Foreign = sig
open Native
module Bigstring :
sig
val init : ctx -> unit
val update : ctx -> ba -> int -> int -> unit
val finalize : ctx -> ba -> int -> unit
end
module Bytes :
sig
val init : ctx -> unit
val update : ctx -> st -> int -> int -> unit
val finalize : ctx -> st -> int -> unit
end
val ctx_size : unit -> int
end
module type Desc =
sig
val block_size : int
val digest_size : int
end
module type Convenience = sig
type t
val compare : t -> t -> int
val eq : t -> t -> bool
val neq : t -> t -> bool
end
module Core (F : Foreign) (D : Desc) = struct
let block_size = D.block_size
and digest_size = D.digest_size
and ctx_size = F.ctx_size ()
module Bytes =
struct
type buffer = Native.st
type ctx = Native.ctx
include (By : Convenience with type t = Native.st)
include Pp.Make (By) (D)
let init () =
let t = Bi.create ctx_size in
( F.Bytes.init t; t )
let feed t buf =
F.Bytes.update t buf 0 (By.length buf)
let feed_bytes = feed
let feed_bigstring t buf =
F.Bigstring.update t buf 0 (Bi.length buf)
let get t =
let res = By.create digest_size in
F.Bytes.finalize t res 0;
res
let digest buf =
let t = init () in ( feed t buf; get t )
let digestv bufs =
let t = init () in ( List.iter (feed t) bufs; get t )
end
module Bigstring = struct
type buffer = Native.ba
type ctx = Native.ctx
include (Bi : Convenience with type t = Native.ba)
include Pp.Make (Bi) (D)
let init () =
let t = Bi.create ctx_size in
( F.Bigstring.init t; t )
let feed t buf =
F.Bigstring.update t buf 0 (Bi.length buf)
let feed_bigstring = feed
let feed_bytes t buf =
F.Bytes.update t buf 0 (By.length buf)
let get t =
let res = Bi.create digest_size in
F.Bigstring.finalize t res 0;
res
let digest buf =
let t = init () in ( feed t buf; get t )
let digestv bufs =
let t = init () in ( List.iter (feed t) bufs; get t )
end
end
module Make (F : Foreign) (D : Desc) = struct
type ctx = Native.ctx
module C = Core (F) (D)
let block_size = C.block_size
and digest_size = C.digest_size
and ctx_size = C.ctx_size
module Bytes =
struct
include C.Bytes
let opad = By.init C.block_size (fun _ -> '\x5c')
let ipad = By.init C.block_size (fun _ -> '\x36')
let rec norm key =
match Pervasives.compare (By.length key) C.block_size with
| 1 -> norm (C.Bytes.digest key)
| -1 -> By.rpad key C.block_size '\000'
| _ -> key
let hmacv ~key msg =
let key = norm key in
let outer = Native.XOR.Bytes.xor key opad in
let inner = Native.XOR.Bytes.xor key ipad in
C.Bytes.digestv [ outer; C.Bytes.digestv (inner :: msg) ]
let hmac ~key msg = hmacv ~key [ msg ]
end
module Bigstring = struct
include C.Bigstring
let opad = Bi.init C.block_size (fun _ -> '\x5c')
let ipad = Bi.init C.block_size (fun _ -> '\x36')
let rec norm key =
match Pervasives.compare (Bi.length key) C.block_size with
| 1 -> norm (C.Bigstring.digest key)
| -1 -> Bi.rpad key C.block_size '\000'
| _ -> key
let hmacv ~key msg =
let key = norm key in
let outer = Native.XOR.Bigstring.xor key opad in
let inner = Native.XOR.Bigstring.xor key ipad in
C.Bigstring.digestv [ outer; C.Bigstring.digestv (inner :: msg) ]
let hmac ~key msg = hmacv ~key [ msg ]
end
end
module type ForeignExt = sig
open Native
module Bigstring :
sig
val init : ctx -> unit
val init' : ctx -> int -> ba -> int -> int -> unit
val update : ctx -> ba -> int -> int -> unit
val finalize : ctx -> ba -> int -> unit
end
module Bytes :
sig
val init : ctx -> unit
val init' : ctx -> int -> st -> int -> int -> unit
val update : ctx -> st -> int -> int -> unit
val finalize : ctx -> st -> int -> unit
end
val ctx_size : unit -> int
val key_size : unit -> int
end
module Make_BLAKE2 (F : ForeignExt) (D : Desc) : Digestif_sig.S = struct
let block_size = D.block_size
and digest_size = D.digest_size
and ctx_size = F.ctx_size ()
and key_size = F.key_size ()
module Bytes =
struct
type buffer = Native.st
type ctx = Native.ctx
include (By : Convenience with type t = Native.st)
include Pp.Make (By) (D)
let init () =
let t = Bi.create ctx_size in
( F.Bytes.init' t digest_size By.empty 0 0; t )
let feed t buf =
F.Bytes.update t buf 0 (By.length buf)
let feed_bytes = feed
let feed_bigstring t buf =
F.Bigstring.update t buf 0 (Bi.length buf)
let get t =
let res = Bytes.create digest_size in
F.Bytes.finalize t res 0;
res
let digest buf =
let t = init () in ( feed t buf; get t )
let digestv bufs =
let t = init () in ( List.iter (feed t) bufs; get t )
let hmacv ~key msg =
let ctx = Bi.create ctx_size in
let res = By.create digest_size in
F.Bytes.init' ctx digest_size key 0 (By.length key);
List.iter (fun x -> F.Bytes.update ctx x 0 (By.length x)) msg;
F.Bytes.finalize ctx res 0;
res
let hmac ~key msg =
hmacv ~key [ msg ]
end
module Bigstring = struct
type buffer = Native.ba
type ctx = Native.ctx
include (Bi : Convenience with type t = Native.ba)
include Pp.Make (Bi) (D)
let init () =
let t = Bi.create ctx_size in
( F.Bigstring.init' t digest_size Bi.empty 0 0; t )
let feed t buf =
F.Bigstring.update t buf 0 (Bi.length buf)
let feed_bigstring = feed
let feed_bytes t buf =
F.Bytes.update t buf 0 (By.length buf)
let get t =
let res = Bi.create digest_size in
F.Bigstring.finalize t res 0;
res
let digest buf =
let t = init () in ( feed t buf; get t )
let digestv bufs =
let t = init () in ( List.iter (feed t) bufs; get t )
let hmacv ~key msg =
if Bi.length key > key_size
then raise (Invalid_argument "BLAKE2B.hmac{v}: invalid key");
let ctx = Bi.create ctx_size in
let res = Bi.create digest_size in
F.Bigstring.init' ctx digest_size key 0 (Bi.length key);
List.iter (fun x -> F.Bigstring.update ctx x 0 (Bi.length x)) msg;
F.Bigstring.finalize ctx res 0;
res
let hmac ~key msg =
hmacv ~key [ msg ]
end
end
module MD5 : S = Make (Native.MD5) (struct let (digest_size, block_size) = (16, 64) end)
module SHA1 : S = Make (Native.SHA1) (struct let (digest_size, block_size) = (20, 64) end)
module SHA224 : S = Make (Native.SHA224) (struct let (digest_size, block_size) = (28, 64) end)
module SHA256 : S = Make (Native.SHA256) (struct let (digest_size, block_size) = (32, 64) end)
module SHA384 : S = Make (Native.SHA384) (struct let (digest_size, block_size) = (48, 128) end)
module SHA512 : S = Make (Native.SHA512) (struct let (digest_size, block_size) = (64, 128) end)
module BLAKE2B = Make_BLAKE2(Native.BLAKE2B) (struct let (digest_size, block_size) = (64, 128) end)
module BLAKE2S = Make_BLAKE2(Native.BLAKE2S) (struct let (digest_size, block_size) = (32, 64) end)
module RMD160 : S = Make (Native.RMD160) (struct let (digest_size, block_size) = (20, 64) end)
type hash = Digestif_sig.hash
let module_of = function
| `MD5 -> (module MD5 : S)
| `SHA1 -> (module SHA1 : S)
| `SHA224 -> (module SHA224 : S)
| `SHA256 -> (module SHA256 : S)
| `SHA384 -> (module SHA384 : S)
| `SHA512 -> (module SHA512 : S)
| `BLAKE2B -> (module BLAKE2B : S)
| `BLAKE2S -> (module BLAKE2S : S)
| `RMD160 -> (module RMD160 : S)
module Bytes = struct
type t = Bytes.t
type buffer = Bytes.t
let digest hash =
let module H = (val (module_of hash)) in
H.Bytes.digest
let digestv hash =
let module H = (val (module_of hash)) in
H.Bytes.digestv
let mac hash =
let module H = (val (module_of hash)) in
H.Bytes.hmac
let macv hash =
let module H = (val (module_of hash)) in
H.Bytes.hmacv
let of_hex hash =
let module H = (val (module_of hash)) in
H.Bytes.of_hex
let to_hex hash =
let module H = (val (module_of hash)) in
H.Bytes.to_hex
let pp hash =
let module H = (val (module_of hash)) in
H.Bytes.pp
end
module Bigstring = struct
type t = Bi.t
type buffer = Bi.t
let digest hash =
let module H = (val (module_of hash)) in
H.Bigstring.digest
let digestv hash =
let module H = (val (module_of hash)) in
H.Bigstring.digestv
let mac hash =
let module H = (val (module_of hash)) in
H.Bigstring.hmac
let macv hash =
let module H = (val (module_of hash)) in
H.Bigstring.hmacv
let of_hex hash =
let module H = (val (module_of hash)) in
H.Bigstring.of_hex
let to_hex hash =
let module H = (val (module_of hash)) in
H.Bigstring.to_hex
let pp hash =
let module H = (val (module_of hash)) in
H.Bigstring.pp
end
let digest_size hash =
let module H = (val (module_of hash)) in
H.digest_size