From 237df2cb1175e66b05345ad9dc503de95b277e11 Mon Sep 17 00:00:00 2001 From: aidan garske Date: Tue, 16 Jul 2024 15:17:40 -0700 Subject: [PATCH] Hash Type selection changes to `ecc.c`. --- wolfcrypt/src/ecc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/src/ecc.c b/wolfcrypt/src/ecc.c index 6c6c7e459..5ac2b9bf8 100644 --- a/wolfcrypt/src/ecc.c +++ b/wolfcrypt/src/ecc.c @@ -7557,7 +7557,7 @@ int wc_ecc_gen_deterministic_k(const byte* hash, word32 hashSz, else if (hashSz == 48) { hashType = WC_HASH_TYPE_SHA384; } - else if (hashSz ==32) { + else if (hashSz == 32) { hashType = WC_HASH_TYPE_SHA256; } else {