From 376f9b36f925a30d57008cc1ae970910e975e09c Mon Sep 17 00:00:00 2001 From: Benjamin Canou Date: Mon, 21 May 2018 17:13:34 +0200 Subject: [PATCH] Vendors/Hacl: fix buffer size glitch in binding --- vendors/ocaml-hacl/src/hacl.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendors/ocaml-hacl/src/hacl.ml b/vendors/ocaml-hacl/src/hacl.ml index 7f68b027f..628367a5f 100644 --- a/vendors/ocaml-hacl/src/hacl.ml +++ b/vendors/ocaml-hacl/src/hacl.ml @@ -124,7 +124,7 @@ module Hash = struct let bytes = 64 let blockbytes = 128 - let statebytes = 169 * 4 + let statebytes = 169 * 8 end) module HMAC_SHA256 = struct