From e4de52378a85cf383994ded8edf0d5cf98dcb10c Mon Sep 17 00:00:00 2001 From: Dmitry Eremin-Solenikov Date: Sun, 28 Dec 2014 12:15:33 +0300 Subject: stribog: Reduce table size to the needed one. * cipher/stribog.c (C16): Avoid allocating superfluous space. -- Signed-off-by: Dmitry Eremin-Solenikov --- cipher/stribog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cipher/stribog.c b/cipher/stribog.c index 942bbf4c..de167a7f 100644 --- a/cipher/stribog.c +++ b/cipher/stribog.c @@ -1080,7 +1080,7 @@ static const u64 stribog_table[8][256] = U64_C(0x72d14d3493b2e388), U64_C(0xd6a30f258c153427) }, }; -static const u64 C16[13][16] = +static const u64 C16[12][8] = { { U64_C(0xdd806559f2a64507), U64_C(0x05767436cc744d23), U64_C(0xa2422a08a460d315), U64_C(0x4b7ce09192676901), -- cgit v1.2.1