crypto/hmac: Fix typo in function implementation names

"hmac" was mistyped as "hmca", breaking linking to some prototype
functions. Also, a couple of includes were missing.

Signed-off-by: Niccolò Maggioni <nicco.maggioni+nuttx@gmail.com>
This commit is contained in:
Niccolò Maggioni
2025-08-13 23:11:02 +08:00
committed by Xiang Xiao
parent 6f38806a5d
commit 83dd57a488
2 changed files with 5 additions and 2 deletions
+3
View File
@@ -26,6 +26,9 @@
****************************************************************************/
#include <sys/types.h>
#include <crypto/md5.h>
#include <crypto/sha1.h>
#include <crypto/sha2.h>
typedef struct _HMAC_MD5_CTX
{