|
17 | 17 | #include <openssl/dsa.h>
|
18 | 18 | #include <openssl/ec.h>
|
19 | 19 | #include <openssl/ecdsa.h>
|
20 |
| -#include <openssl/engine.h> |
21 | 20 | #include <openssl/err.h>
|
22 | 21 | #include <openssl/evp.h>
|
23 | 22 | #include <openssl/hmac.h>
|
|
46 | 45 | #include <openssl/provider.h>
|
47 | 46 | #endif
|
48 | 47 |
|
| 48 | +#if HAVE_OPENSSL_ENGINE |
| 49 | +// Some Linux distributions build without engine support. |
| 50 | +#include <openssl/engine.h> |
| 51 | +#endif |
| 52 | + |
49 | 53 | #if OPENSSL_VERSION_NUMBER >= OPENSSL_VERSION_1_1_1_RTM
|
50 | 54 | #define HAVE_OPENSSL_SET_CIPHERSUITES 1
|
51 | 55 | #else
|
@@ -168,6 +172,24 @@ const EVP_MD *EVP_shake256(void);
|
168 | 172 | int EVP_DigestFinalXOF(EVP_MD_CTX *ctx, unsigned char *md, size_t len);
|
169 | 173 | #endif
|
170 | 174 |
|
| 175 | +#if !HAVE_OPENSSL_ENGINE |
| 176 | +#undef HAVE_OPENSSL_ENGINE |
| 177 | +#define HAVE_OPENSSL_ENGINE 1 |
| 178 | + |
| 179 | +ENGINE *ENGINE_by_id(const char *id); |
| 180 | +int ENGINE_init(ENGINE *e); |
| 181 | +int ENGINE_finish(ENGINE *e); |
| 182 | +ENGINE *ENGINE_new(void); |
| 183 | +int ENGINE_free(ENGINE *e); |
| 184 | +typedef EVP_PKEY *(*ENGINE_LOAD_KEY_PTR)(ENGINE *, const char *, |
| 185 | + UI_METHOD *ui_method, |
| 186 | + void *callback_data); |
| 187 | +EVP_PKEY *ENGINE_load_private_key(ENGINE *e, const char *key_id, |
| 188 | + UI_METHOD *ui_method, void *callback_data); |
| 189 | +EVP_PKEY *ENGINE_load_public_key(ENGINE *e, const char *key_id, |
| 190 | + UI_METHOD *ui_method, void *callback_data); |
| 191 | +#endif |
| 192 | + |
171 | 193 | #define API_EXISTS(fn) (fn != NULL)
|
172 | 194 |
|
173 | 195 | // List of all functions from the libssl that are used in the System.Security.Cryptography.Native.
|
@@ -298,12 +320,12 @@ int EVP_DigestFinalXOF(EVP_MD_CTX *ctx, unsigned char *md, size_t len);
|
298 | 320 | REQUIRED_FUNCTION(EC_POINT_mul) \
|
299 | 321 | REQUIRED_FUNCTION(EC_POINT_new) \
|
300 | 322 | REQUIRED_FUNCTION(EC_POINT_set_affine_coordinates_GFp) \
|
301 |
| - REQUIRED_FUNCTION(ENGINE_by_id) \ |
302 |
| - REQUIRED_FUNCTION(ENGINE_finish) \ |
303 |
| - REQUIRED_FUNCTION(ENGINE_free) \ |
304 |
| - REQUIRED_FUNCTION(ENGINE_init) \ |
305 |
| - REQUIRED_FUNCTION(ENGINE_load_public_key) \ |
306 |
| - REQUIRED_FUNCTION(ENGINE_load_private_key) \ |
| 323 | + LIGHTUP_FUNCTION(ENGINE_by_id) \ |
| 324 | + LIGHTUP_FUNCTION(ENGINE_finish) \ |
| 325 | + LIGHTUP_FUNCTION(ENGINE_free) \ |
| 326 | + LIGHTUP_FUNCTION(ENGINE_init) \ |
| 327 | + LIGHTUP_FUNCTION(ENGINE_load_public_key) \ |
| 328 | + LIGHTUP_FUNCTION(ENGINE_load_private_key) \ |
307 | 329 | REQUIRED_FUNCTION(ERR_clear_error) \
|
308 | 330 | REQUIRED_FUNCTION(ERR_error_string_n) \
|
309 | 331 | REQUIRED_FUNCTION(ERR_get_error) \
|
|
0 commit comments