Themysqlddaemon withFIPSenabled output the following warning when it started. Raw [Warning] [MY-013245] [Server] The SSL library function CRYPTO_set_mem_functions failed. This is typically caused by the SSL library already being used. As a result the SSL memory allocation will not be instrume...
OpenSSL - set all heap functions in CRYPTO_set_mem_functions. Browse files The reason is that on Windows, OpenSSL can be built with different C runtime than the server (e.g Debug runtime in debug vcpkg build). Overwriting only malloc(), with CRT that server is using can cause mixup...
Themalloc/realloc/freefunctions defined inCryptlib/SysCall/BaseMemAllocation.care what actually get used, so just drop the explicit call toCRYPTO_set_mem_functions.