git: 9front

Download patch

ref: 065eba90017be6d23ea72a062e5a533d6bb59227
parent: dca868e6dcfb59d704ea57cb2c633e58f475caf9
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sun Feb 28 04:09:41 EST 2016

libsec: have 16 32-bit words in DigestState to avoid out of bounds warnings for poly1305

--- a/sys/include/libsec.h
+++ b/sys/include/libsec.h
@@ -215,7 +215,7 @@
 {
 	uvlong	len;
 	union {
-		u32int	state[8];
+		u32int	state[16];
 		u64int	bstate[8];
 	};
 	uchar	buf[256];
--