mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-31 14:22:14 +00:00
feat(mbedtls): support ecp fixed-point multiplication configurable
This commit is contained in:
@@ -488,6 +488,19 @@
|
||||
#undef MBEDTLS_ECP_NIST_OPTIM
|
||||
#endif
|
||||
|
||||
/**
|
||||
* \def MBEDTLS_ECP_FIXED_POINT_OPTIM
|
||||
*
|
||||
* Enable speed up fixed-point multiplication.
|
||||
*
|
||||
* Comment this macro to disable FIXED POINT curves optimisation.
|
||||
*/
|
||||
#ifdef CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM
|
||||
#define MBEDTLS_ECP_FIXED_POINT_OPTIM 1
|
||||
#else
|
||||
#define MBEDTLS_ECP_FIXED_POINT_OPTIM 0
|
||||
#endif
|
||||
|
||||
/**
|
||||
* \def MBEDTLS_ECDSA_DETERMINISTIC
|
||||
*
|
||||
|
Reference in New Issue
Block a user