I downloaded "Dockkit ADK 1.0" and trying to compile, and some openssl include .h files are missing, for example in HAPBoringSSL.c, the below files can't found: #include <openssl/bn.h> #include <openssl/evp.h> #include <openssl/hkdf.h> #include <openssl/hmac.h> #include <openssl/rand.h>
where can I get these .h files? I'm worrying about the version conformance if I fetch these files from internet.
I met the same problem while compiling HAPMbedTLS.c, and I download mbedtls package from internet, and still mbedtls_chachapoly_context can't be found in the downloaded mbedtls package, it looks like it's not the correct version of the mbedtls package I got from internet.