1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-22 17:39:53 +03:00

Merge pull request #484 from davidebeatrici/openssl

Encrypt: improve FreeOpenSSLThreadState() and FreeCryptLibrary(), in order to clean up the library correctly
This commit is contained in:
Ilya Shipitsin 2018-07-26 02:50:55 +05:00 committed by GitHub
commit 65bda6a44d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3661,9 +3661,14 @@ void Rand(void *buf, UINT size)
// Delete a thread-specific information that OpenSSL has holded
void FreeOpenSSLThreadState()
{
CRYPTO_cleanup_all_ex_data();
ERR_remove_state(0);
}
#if OPENSSL_VERSION_NUMBER < 0x10100000L
#define SSL_COMP_free_compression_methods() (sk_free(SSL_COMP_get_compression_methods()))
#endif
// Release the Crypt library
void FreeCryptLibrary()
{
@ -3673,6 +3678,17 @@ void FreeCryptLibrary()
openssl_lock = NULL;
// RAND_Free_For_SoftEther();
OpenSSL_FreeLock();
FIPS_mode_set(0);
ENGINE_cleanup();
CONF_modules_unload(1);
EVP_cleanup();
FreeOpenSSLThreadState();
ERR_free_strings();
SSL_COMP_free_compression_methods();
}
// Initialize the Crypt library