summaryrefslogtreecommitdiff
path: root/aes-decrypt.c
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2013-05-17 17:35:36 +0200
committerNiels Möller <nisse@lysator.liu.se>2013-05-17 17:35:36 +0200
commit614a672e7efd87b82c514b471ccc66c081c380d4 (patch)
tree6d330873fe585b300613ca841e713f6228b72260 /aes-decrypt.c
parentff29d0a9c9b7d17e0bc15bbba88993244903222b (diff)
downloadnettle-614a672e7efd87b82c514b471ccc66c081c380d4.tar.gz
Rearranged struct aes_ctx.
Diffstat (limited to 'aes-decrypt.c')
-rw-r--r--aes-decrypt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/aes-decrypt.c b/aes-decrypt.c
index d83a6952..d08eac34 100644
--- a/aes-decrypt.c
+++ b/aes-decrypt.c
@@ -342,6 +342,6 @@ aes_decrypt(const struct aes_ctx *ctx,
const uint8_t *src)
{
assert(!(length % AES_BLOCK_SIZE) );
- _aes_decrypt(ctx->nrounds, ctx->keys, &_aes_decrypt_table,
+ _aes_decrypt(ctx->rounds, ctx->keys, &_aes_decrypt_table,
length, dst, src);
}