From cfa1b589c6bf7ff5e3ea73ea00293a75c514c18f Mon Sep 17 00:00:00 2001 From: Anthony Hu Date: Thu, 30 Nov 2023 15:26:42 -0500 Subject: [PATCH] minor fix again --- doc/dox_comments/header_files/aes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/dox_comments/header_files/aes.h b/doc/dox_comments/header_files/aes.h index 4a662157a..4110a1f92 100644 --- a/doc/dox_comments/header_files/aes.h +++ b/doc/dox_comments/header_files/aes.h @@ -545,8 +545,8 @@ int wc_GmacUpdate(Gmac* gmac, const byte* iv, word32 ivSz, Aes enc; key[] = { some 16, 24, or 32 byte length key }; - wc_AesInit(&aes, HEAP_HINT, INVALID_DEVID); // Make sure devId updated - wc_AesCcmSetKey(&aes, key, sizeof(key)); + wc_AesInit(&enc, HEAP_HINT, INVALID_DEVID); // Make sure devId updated + wc_AesCcmSetKey(&enc, key, sizeof(key)); \endcode \sa wc_AesCcmEncrypt