Hi
I'am using MW version 03.03.00
I found out that openssl plugin uses mutex which has empty implementation in the file "sss/plugin/openssl/engine/src/ax_cryptoIpc.c" is it required to add implementation? Another issue with this mutex is that with proper implementation it can cause deadlock because of the bug in the file "sss/plugin/openssl/engine/src/ax_sssEngine_ecc.c". There is a code like this:
axCi_MutexLock();
if (status != kStatus_SSS_Success) {
return NULL;
}
axCi_MutexUnlock();
mutex is not released in case of error and application will be deadlocked after next function call