mirror of https://github.com/wolfSSL/wolfssl.git
linuxkm/linuxkm-fips-hash.c: in hmac_update_cb(), use wc_HmacUpdate(), not wc_HmacUpdate_fips(), for compatibility with dev-no-post.
parent
7810394f09
commit
9907811bed
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue