Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/crypto.c
Original file line number Diff line number Diff line change
Expand Up @@ -6411,7 +6411,6 @@ CK_RV C_GenerateKey(CK_SESSION_HANDLE hSession,
case CKP_PKCS5_PBKD2_HMAC_SHA512:
hashType = WC_SHA512;
break;
#endif
#ifndef WOLFSSL_NOSHA512_224
case CKP_PKCS5_PBKD2_HMAC_SHA512_224:
hashType = WC_SHA512_224;
Expand All @@ -6421,6 +6420,7 @@ CK_RV C_GenerateKey(CK_SESSION_HANDLE hSession,
case CKP_PKCS5_PBKD2_HMAC_SHA512_256:
hashType = WC_SHA512_256;
break;
#endif
#endif
default:
return CKR_MECHANISM_PARAM_INVALID;
Expand Down
Loading