From 2229015eec1804cf33225fd28931a9e43e1fdf2e Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 28 Sep 2024 01:07:52 -0400 Subject: lib: crypto: Add AES key size define Signed-off-by: Ian Moffett --- lib/include/crypto/aes.h | 1 + 1 file changed, 1 insertion(+) (limited to 'lib') diff --git a/lib/include/crypto/aes.h b/lib/include/crypto/aes.h index ac4604b..7b32dfe 100644 --- a/lib/include/crypto/aes.h +++ b/lib/include/crypto/aes.h @@ -34,6 +34,7 @@ #define AES_IV_SIZE 16 #define AES_GCM_TAG_SIZE 16 +#define AES_KEY_SIZE 32 struct aes_message { unsigned char tag[AES_GCM_TAG_SIZE]; -- cgit v1.2.3