From 09f0fda0dfba563a194afac29f60ef9ae373fc76 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Tue, 4 Nov 2014 14:20:14 +0100 Subject: m MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/libkeccak/digest.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/libkeccak/digest.c b/src/libkeccak/digest.c index eacd3aa..cf17538 100644 --- a/src/libkeccak/digest.c +++ b/src/libkeccak/digest.c @@ -94,8 +94,8 @@ static __attribute__((leaf, nonnull, nothrow, hot)) void libkeccak_f_round(libkeccak_state_t* restrict state, int_fast64_t rc) { int_fast64_t* restrict A = state->S; - int_fast64_t* restrict B = state->B; - int_fast64_t* restrict C = state->C; + int_fast64_t B[25]; + int_fast64_t C[5]; int_fast64_t da, db, dc, dd, de, wmod = state->wmod; long w = state->w; @@ -139,8 +139,8 @@ static __attribute__((leaf, nonnull, nothrow, hot)) void libkeccak_f_round64(libkeccak_state_t* restrict state, int_fast64_t rc) { int_fast64_t* restrict A = state->S; - int_fast64_t* restrict B = state->B; - int_fast64_t* restrict C = state->C; + int_fast64_t B[25]; + int_fast64_t C[5]; int_fast64_t da, db, dc, dd, de; /* θ step (step 1 and 2 of 3). */ -- cgit v1.2.3-70-g09d2