File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 9
9
#include <openssl/obj_mac.h> // for NID_crl_distribution_points, NID_info...
10
10
#include <openssl/pem.h> // for PEM_read_bio_X509
11
11
#include <openssl/safestack.h> // for STACK_OF
12
- #include <openssl/types.h> // for X509, ASN1_IA5STRING, X509_CRL, DIST_...
13
12
#include <openssl/x509.h> // for X509_free, X509_STORE_add_cert, X509_...
14
13
#include <openssl/x509v3.h> // for DIST_POINT_NAME, GENERAL_NAME, ACCESS...
15
14
#include <stdbool.h> // for bool, false, true
16
15
#include <stdlib.h> // for free, realloc
17
16
#include <string.h> // for memcpy, strdup, strlen
18
17
18
+ #if OPENSSL_VERSION_NUMBER < 0x30000000L
19
+ #include <openssl/aes.h>
20
+ #else
21
+ #include <openssl/types.h> // for X509, ASN1_IA5STRING, X509_CRL, DIST_...
22
+ #endif
23
+
19
24
#include "fapi_certificates.h" // for root_cert_list
20
25
#include "fapi_int.h" // for OSSL_FREE
21
26
#include "ifapi_curl.h"
You can’t perform that action at this time.
0 commit comments