Hash Type selection changes to ecc.c.

This commit is contained in:
aidan garske
2024-07-16 15:17:40 -07:00
parent 96af77d757
commit 237df2cb11

View File

@ -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 {