aboutsummaryrefslogtreecommitdiff
path: root/sha3.h
diff options
context:
space:
mode:
Diffstat (limited to 'sha3.h')
-rw-r--r--sha3.h3
1 files changed, 3 insertions, 0 deletions
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 */