From 21042c7ed80d60f97443a4eca69cfc5b3a69a6de Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niels=20M=C3=B6ller?= Date: Sun, 22 Jun 2025 16:52:32 +0200 Subject: [PATCH] Use _NETTLE_ALIGN16 also for aes192_ctx and aes256_ctx. --- aes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aes.h b/aes.h index 913c8463..de9f94b1 100644 --- a/aes.h +++ b/aes.h @@ -89,7 +89,7 @@ aes128_decrypt(const struct aes128_ctx *ctx, struct aes192_ctx { - uint32_t keys[4 * (_AES192_ROUNDS + 1)]; + _NETTLE_ALIGN16 uint32_t keys[4 * (_AES192_ROUNDS + 1)]; }; void @@ -110,7 +110,7 @@ aes192_decrypt(const struct aes192_ctx *ctx, struct aes256_ctx { - uint32_t keys[4 * (_AES256_ROUNDS + 1)]; + _NETTLE_ALIGN16 uint32_t keys[4 * (_AES256_ROUNDS + 1)]; }; void -- 2.47.2