Skip to content

Commit

Permalink
X
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Fuchs <[email protected]>
  • Loading branch information
AndreasFuchsTPM committed May 2, 2024
1 parent 505e885 commit 255f382
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/tss2-fapi/ifapi_curl.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,18 @@
#include <openssl/obj_mac.h> // for NID_crl_distribution_points, NID_info...
#include <openssl/pem.h> // for PEM_read_bio_X509
#include <openssl/safestack.h> // for STACK_OF
#include <openssl/types.h> // for X509, ASN1_IA5STRING, X509_CRL, DIST_...
#include <openssl/x509.h> // for X509_free, X509_STORE_add_cert, X509_...
#include <openssl/x509v3.h> // for DIST_POINT_NAME, GENERAL_NAME, ACCESS...
#include <stdbool.h> // for bool, false, true
#include <stdlib.h> // for free, realloc
#include <string.h> // for memcpy, strdup, strlen

#if OPENSSL_VERSION_NUMBER < 0x30000000L
#include <openssl/aes.h>
#else
#include <openssl/types.h> // for X509, ASN1_IA5STRING, X509_CRL, DIST_...
#endif

#include "fapi_certificates.h" // for root_cert_list
#include "fapi_int.h" // for OSSL_FREE
#include "ifapi_curl.h"
Expand Down

0 comments on commit 255f382

Please sign in to comment.