summaryrefslogtreecommitdiffstats
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
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
-rw-r--r--aes.c2
-rw-r--r--aes.h2
2 files changed, 2 insertions, 2 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);
diff --git a/aes.h b/aes.h
index a57a2f0..dd16622 100644
--- a/aes.h
+++ b/aes.h
@@ -49,7 +49,7 @@ struct AES_ctx
};
void AES_init_ctx(struct AES_ctx* ctx, const uint8_t* 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);
void AES_ctx_set_iv(struct AES_ctx* ctx, const uint8_t* iv);
#endif