summaryrefslogtreecommitdiffstats
path: root/aes.c
diff options
context:
space:
mode:
authorNick Knudson <nickaknudson@gmail.com>2018-01-31 22:31:15 +0100
committerNick Knudson <nickaknudson@gmail.com>2018-01-31 22:31:15 +0100
commit084974280327360fb5b22f1281160ebe63af6f2a (patch)
treec39738ce980eeb48adae6f2afcfc4195451e66c0 /aes.c
parentUpdate README.md (diff)
downloadtiny-AES-c-084974280327360fb5b22f1281160ebe63af6f2a.tar
tiny-AES-c-084974280327360fb5b22f1281160ebe63af6f2a.tar.gz
tiny-AES-c-084974280327360fb5b22f1281160ebe63af6f2a.tar.bz2
tiny-AES-c-084974280327360fb5b22f1281160ebe63af6f2a.tar.lz
tiny-AES-c-084974280327360fb5b22f1281160ebe63af6f2a.tar.xz
tiny-AES-c-084974280327360fb5b22f1281160ebe63af6f2a.tar.zst
tiny-AES-c-084974280327360fb5b22f1281160ebe63af6f2a.zip
Diffstat (limited to 'aes.c')
-rw-r--r--aes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/aes.c b/aes.c
index 8fd0a85..3e0b3e3 100644
--- a/aes.c
+++ b/aes.c
@@ -226,7 +226,7 @@ void AES_init_ctx(struct AES_ctx* ctx, const uint8_t* key)
{
KeyExpansion(ctx->RoundKey, key);
}
-#if defined(CBC) && (CBC == 1)
+#if (defined(CBC) && (CBC == 1)) || (defined(CTR) && (CTR == 1))
void AES_init_ctx_iv(struct AES_ctx* ctx, const uint8_t* key, const uint8_t* iv)
{
KeyExpansion(ctx->RoundKey, key);