diff options
Diffstat (limited to '')
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | src/libkeccak/digest.c | 2 |
2 files changed, 0 insertions, 4 deletions
@@ -10,5 +10,3 @@ Test parallelisation and acceleration. Manuals are needed. -Do not forget the todos in the code. - diff --git a/src/libkeccak/digest.c b/src/libkeccak/digest.c index b136eb0..cc2bd1b 100644 --- a/src/libkeccak/digest.c +++ b/src/libkeccak/digest.c @@ -100,7 +100,6 @@ static const uint_fast64_t RC[] = static __attribute__((nonnull, nothrow, hot)) void libkeccak_f_round(register libkeccak_state_t* restrict state, register int_fast64_t rc) { - /* XXX should any loop be rerolled? */ int_fast64_t* restrict A = state->S; int_fast64_t B[25]; int_fast64_t C[5]; @@ -148,7 +147,6 @@ void libkeccak_f_round(register libkeccak_state_t* restrict state, register int_ static __attribute__((nonnull, nothrow, hot)) void libkeccak_f_round64(register libkeccak_state_t* restrict state, register int_fast64_t rc) { - /* XXX should any loop be rerolled? */ int_fast64_t* restrict A = state->S; int_fast64_t B[25]; int_fast64_t C[5]; |