Don't load OpenSSL config

* Doesn't seem to be required for just doing some AES
* OPENSSL_config(NULL) is deprecated anyways
This commit is contained in:
Martchus 2017-04-27 22:31:10 +02:00
parent 2b28fbcc66
commit cf04af93a4
2 changed files with 1 additions and 3 deletions

View File

@ -40,7 +40,7 @@ set(META_APP_URL "https://github.com/${META_APP_AUTHOR}/${META_PROJECT_NAME}")
set(META_APP_DESCRIPTION "C++ library to read/write passwords from/to encrypted files")
set(META_VERSION_MAJOR 3)
set(META_VERSION_MINOR 1)
set(META_VERSION_PATCH 3)
set(META_VERSION_PATCH 4)
set(META_PUBLIC_SHARED_LIB_DEPENDS c++utilities)
set(META_PUBLIC_STATIC_LIB_DEPENDS c++utilities_static)

View File

@ -23,8 +23,6 @@ void init()
ERR_load_crypto_strings();
// load all digest and cipher algorithms
OpenSSL_add_all_algorithms();
// load config file, and other important initialisation
OPENSSL_config(NULL);
}
/*!