Merge pull request #6884 from kareem-wolfssl/zd16824

Add explicit break to switch statement in GetHmacLength
This commit is contained in:
JacobBarthelmeh
2023-10-18 11:20:55 -06:00
committed by GitHub

View File

@ -10136,6 +10136,8 @@ static WC_INLINE byte GetHmacLength(int hmac)
case sm3_mac:
return WC_SM3_DIGEST_SIZE;
#endif
default:
break;
}
return 0;
}