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 255f382 commit 1606527
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/tss2-fapi/ifapi_get_web_cert.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,18 @@
#include <openssl/buffer.h> // for buf_mem_st
#include <openssl/evp.h> // for EVP_DigestUpdate, BIO_f_base64
#include <openssl/sha.h> // for SHA256_DIGEST_LENGTH
#include <openssl/types.h> // for BIO, BUF_MEM, EVP_MD_CTX
#include <stdbool.h> // for bool, true
#include <stdint.h> // for uint8_t
#include <stdio.h> // for NULL, size_t, snprintf, sprintf, FILE
#include <stdlib.h> // for free, malloc, calloc
#include <string.h> // for 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_int.h" // for FAPI_CONTEXT, VENDOR_AMD, VENDOR_INTC
#include "ifapi_config.h" // for IFAPI_CONFIG
#include "ifapi_curl.h" // for ifapi_get_curl_buffer
Expand Down

0 comments on commit 1606527

Please sign in to comment.