From 4a9239723609d4f850b1aa7083b712682027136a Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Sun, 28 Feb 2016 09:09:41 +0100 Subject: libsec: have 16 32-bit words in DigestState to avoid out of bounds warnings for poly1305 --- sys/include/libsec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/include/libsec.h') diff --git a/sys/include/libsec.h b/sys/include/libsec.h index 09db4f0f0..bd76b1377 100644 --- a/sys/include/libsec.h +++ b/sys/include/libsec.h @@ -215,7 +215,7 @@ struct DigestState { uvlong len; union { - u32int state[8]; + u32int state[16]; u64int bstate[8]; }; uchar buf[256]; -- cgit v1.2.3