openssl: Remove checks and legacy compatibility code for OpenSSL < 1.0.2

More of this code was already removed with previous commits.

While versions < 1.1.1 are not officially supported anymore, 1.0.2 might
still be in use because before 3.x that was the latest version with
official FIPS support (OpenSSL apparently also provides extended commercial
support for it).
This commit is contained in:
Tobias Brunner
2022-04-14 19:05:44 +02:00
parent db0c53c207
commit f26639de2c
2 changed files with 4 additions and 28 deletions
@@ -15,8 +15,6 @@
#include <openssl/opensslv.h>
#if OPENSSL_VERSION_NUMBER >= 0x1000100fL
#include "openssl_aead.h"
#include <openssl/evp.h>
@@ -363,5 +361,3 @@ aead_t *openssl_aead_create(encryption_algorithm_t algo,
return &this->public;
}
#endif /* OPENSSL_VERSION_NUMBER */