From 28df13db758044b0455723b8c1fefdba524b69ee Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Sun, 3 Sep 2023 02:57:24 -0400 Subject: sha3.h: add kmac{128,256}() prototypes --- sha3.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sha3.h') diff --git a/sha3.h b/sha3.h index aa75cd6..aea3704 100644 --- a/sha3.h +++ b/sha3.h @@ -61,6 +61,9 @@ typedef struct { const size_t custom_len; // length of customization string, in bytes } kmac_params_t; +void kmac128(const kmac_params_t params, const uint8_t * const msg, const size_t msg_len, uint8_t * const dst, const size_t dst_len); +void kmac256(const kmac_params_t params, const uint8_t * const msg, const size_t msg_len, uint8_t * const dst, const size_t dst_len); + #ifdef __cplusplus } #endif /* __cplusplus */ -- cgit v1.2.3