summaryrefslogtreecommitdiff
path: root/aes-decrypt-internal.c
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2008-09-15 22:23:24 +0200
committerNiels Möller <nisse@lysator.liu.se>2008-09-15 22:23:24 +0200
commit7dcba661d62d9248ed7b892024a2442b0520016f (patch)
tree9834a084ec1a4595fd3dd3771162f0faf26f8c24 /aes-decrypt-internal.c
parentd4757ff06292c71af5ac56724b03af4126279a01 (diff)
downloadnettle-7dcba661d62d9248ed7b892024a2442b0520016f.tar.gz
Reviewed FIXME-comments.
Rev: nettle/aes-decrypt-internal.c:1.2 Rev: nettle/aes-encrypt-internal.c:1.2 Rev: nettle/aes-internal.h:1.2 Rev: nettle/arctwo.h:1.2 Rev: nettle/base16-decode.c:1.2 Rev: nettle/base16-encode.c:1.2 Rev: nettle/base16.h:1.2 Rev: nettle/base64.h:1.2 Rev: nettle/bignum-random.c:1.2 Rev: nettle/bignum.c:1.2 Rev: nettle/bignum.h:1.3 Rev: nettle/rsa-sign.c:1.3 Rev: nettle/rsa-verify.c:1.3 Rev: nettle/rsa.c:1.3 Rev: nettle/rsa.h:1.2 Rev: nettle/sexp-transport-format.c:1.2 Rev: nettle/sexp.c:1.2 Rev: nettle/sexp.h:1.2
Diffstat (limited to 'aes-decrypt-internal.c')
-rw-r--r--aes-decrypt-internal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/aes-decrypt-internal.c b/aes-decrypt-internal.c
index abb78de0..9dff1660 100644
--- a/aes-decrypt-internal.c
+++ b/aes-decrypt-internal.c
@@ -59,9 +59,9 @@ _nettle_aes_decrypt(const struct aes_ctx *ctx,
t2 = AES_ROUND(T, w2, w1, w0, w3, ctx->keys[4*round + 2]);
t3 = AES_ROUND(T, w3, w2, w1, w0, ctx->keys[4*round + 3]);
- /* FIXME: We could unrolling the loop twice, to avoid these
- assignments. If all eight variables fit in registers, that
- should give a speedup. */
+ /* We could unroll the loop twice, to avoid these
+ assignments. If all eight variables fit in registers,
+ that should give a slight speedup. */
w0 = t0;
w1 = t1;
w2 = t2;