1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-07 06:42:56 +03:00

Support ARM64EC in the same way as ARM64 in sha256 and sha512

Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
Dave Rodgman
2023-08-08 10:37:33 +01:00
parent 78fc0bd1db
commit ad71b6a834
2 changed files with 3 additions and 3 deletions

View File

@@ -110,7 +110,7 @@
# include <signal.h> # include <signal.h>
# endif # endif
# endif # endif
#elif defined(_M_ARM64) #elif defined(_M_ARM64) || defined(_M_ARM64EC)
# if defined(MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT) || \ # if defined(MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT) || \
defined(MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY) defined(MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY)
# include <arm64_neon.h> # include <arm64_neon.h>
@@ -135,7 +135,7 @@ static int mbedtls_a64_crypto_sha256_determine_support(void)
{ {
return 1; return 1;
} }
#elif defined(_M_ARM64) #elif defined(_M_ARM64) || defined(_M_ARM64EC)
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <Windows.h> #include <Windows.h>
#include <processthreadsapi.h> #include <processthreadsapi.h>

View File

@@ -154,7 +154,7 @@ static int mbedtls_a64_crypto_sha512_determine_support(void)
NULL, 0); NULL, 0);
return ret == 0 && value != 0; return ret == 0 && value != 0;
} }
#elif defined(_M_ARM64) #elif defined(_M_ARM64) || defined(_M_ARM64EC)
/* /*
* As of March 2022, there don't appear to be any PF_ARM_V8_* flags * As of March 2022, there don't appear to be any PF_ARM_V8_* flags
* available to pass to IsProcessorFeaturePresent() to check for * available to pass to IsProcessorFeaturePresent() to check for