summaryrefslogtreecommitdiffstats
path: root/aes.c
diff options
context:
space:
mode:
authorkokke <spam@rowdy.dk>2018-02-01 09:23:46 +0100
committerGitHub <noreply@github.com>2018-02-01 09:23:46 +0100
commit61fa5c1d28d8caaf430f92d15fce1e945404508f (patch)
treec39738ce980eeb48adae6f2afcfc4195451e66c0 /aes.c
parentUpdate README.md (diff)
parentCTR-only mode still needs functions to update counter (iv) (diff)
downloadtiny-AES-c-61fa5c1d28d8caaf430f92d15fce1e945404508f.tar
tiny-AES-c-61fa5c1d28d8caaf430f92d15fce1e945404508f.tar.gz
tiny-AES-c-61fa5c1d28d8caaf430f92d15fce1e945404508f.tar.bz2
tiny-AES-c-61fa5c1d28d8caaf430f92d15fce1e945404508f.tar.lz
tiny-AES-c-61fa5c1d28d8caaf430f92d15fce1e945404508f.tar.xz
tiny-AES-c-61fa5c1d28d8caaf430f92d15fce1e945404508f.tar.zst
tiny-AES-c-61fa5c1d28d8caaf430f92d15fce1e945404508f.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);