diff options
author | Ian Moffett <ian@osmora.org> | 2024-09-28 01:07:52 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-09-28 01:07:52 -0400 |
commit | 2229015eec1804cf33225fd28931a9e43e1fdf2e (patch) | |
tree | da0abfac520bd6a9bdfe1de4807247ed6af7f155 | |
parent | e8c5dd44d1383601192faf2a27dc517dffb9ddf9 (diff) |
lib: crypto: Add AES key size define
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | lib/include/crypto/aes.h | 1 |
1 files changed, 1 insertions, 0 deletions
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]; |