linuxkm/linuxkm-fips-hash.c: in hmac_update_cb(), use wc_HmacUpdate(), not wc_HmacUpdate_fips(), for compatibility with dev-no-post.

pull/11382/head
Daniel Pouzzner 2026-09-04 12:06:26 -05:00
parent 7810394f09
commit 9907811bed
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ static int hmac_setkey_cb(Hmac *hmac, const byte *key, word32 key_len) {
}
static int hmac_update_cb(Hmac *hmac, const byte *in, word32 in_len) {
return wc_HmacUpdate_fips(hmac, in, in_len);
return wc_HmacUpdate(hmac, in, in_len);
}
static int hmac_final_cb(Hmac *hmac, byte *out, word32 out_sz) {