Skip to content
Open
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
4 changes: 4 additions & 0 deletions wolfcrypt/src/wc_pkcs11.c
Original file line number Diff line number Diff line change
Expand Up @@ -6304,6 +6304,7 @@ static int Pkcs11GetCert(Pkcs11Session* session, wc_CryptoInfo* info) {
* @param [in] info Cryptographic operation data.
* @param [in] ctx Context data for device - the token object.
* @return WC_HW_E when a PKCS#11 library call fails.
* @return NOT_COMPILED_IN when an unsupported operation is requested.
* @return 0 on success.
*/
int wc_Pkcs11_CryptoDevCb(int devId, wc_CryptoInfo* info, void* ctx)
Expand Down Expand Up @@ -6525,6 +6526,9 @@ int wc_Pkcs11_CryptoDevCb(int devId, wc_CryptoInfo* info, void* ctx)
}
break;
#endif
default:
ret = NOT_COMPILED_IN;
break;
Comment thread
kareem-wolfssl marked this conversation as resolved.
}
#else
ret = NOT_COMPILED_IN;
Expand Down
Loading