Commit 5ffa6559 authored by Cedric Roux's avatar Cedric Roux

snow3g: fix array size

parent 2c07f008
......@@ -678,7 +678,7 @@ static uint64_t MUL64(uint64_t v, uint64_t p, uint64_t c)
return result;
}
static inline uint64_t mul_p(const uint64_t pm[7][256], uint64_t x)
static inline uint64_t mul_p(const uint64_t pm[8][256], uint64_t x)
{
uint64_t x0 = (x >> (32 + 24)) & 255;
uint64_t x1 = (x >> (32 + 16)) & 255;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment