aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-11-12 23:50:04 +0100
committerMattias Andrée <maandree@operamail.com>2014-11-12 23:50:04 +0100
commit8680506158888e3637a4abcb13d2d088f19de078 (patch)
treeef74eb52b5e1ceecbe8be4d9dcd3a367cacada40
parentadd install and uninstall rules (diff)
downloadlibkeccak-8680506158888e3637a4abcb13d2d088f19de078.tar.gz
libkeccak-8680506158888e3637a4abcb13d2d088f19de078.tar.bz2
libkeccak-8680506158888e3637a4abcb13d2d088f19de078.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--TODO2
-rw-r--r--src/libkeccak/digest.c2
2 files changed, 0 insertions, 4 deletions
diff --git a/TODO b/TODO
index a134d18..06dd743 100644
--- a/TODO
+++ b/TODO
@@ -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];