summaryrefslogtreecommitdiff
path: root/aes-decrypt.c
diff options
context:
space:
mode:
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);
}