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

This commit is contained in:
cinap_lenrek 2016-02-28 09:09:41 +01:00
parent 5ebb1a29d8
commit 4a92397236

View file

@ -215,7 +215,7 @@ struct DigestState
{
uvlong len;
union {
u32int state[8];
u32int state[16];
u64int bstate[8];
};
uchar buf[256];