From 23fe6e8c8596333c2183f0f4389817087442c551 Mon Sep 17 00:00:00 2001 From: vnugent Date: Fri, 5 Jul 2024 00:03:48 -0400 Subject: push latest utils and changes --- src/hkdf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/hkdf.h') diff --git a/src/hkdf.h b/src/hkdf.h index 460e203..2e3a55e 100644 --- a/src/hkdf.h +++ b/src/hkdf.h @@ -42,12 +42,12 @@ /* typedefs for hdkf callback functions */ -typedef cstatus_t (*hmac_hash_func)(void* ctx, const cspan_t* data); +typedef cstatus_t (*hmac_hash_fn)(void* ctx, const cspan_t* data); typedef cstatus_t (*hmac_finish_fn)(void* ctx, sha256_t hmacOut32); struct nc_hkdf_fn_cb_struct { - hmac_hash_func update; + hmac_hash_fn update; hmac_finish_fn finish; }; -- cgit