mirror of https://github.com/wolfSSL/wolfssl.git
Add option `NO_ECC_CACHE_CURVE` to allow disabling ECC curve cache with async.
parent
eaa5edb65b
commit
3afa420c31
|
@ -2755,7 +2755,9 @@ extern void uITRON4_free(void *p) ;
|
|||
#endif
|
||||
|
||||
/* Enable ECC_CACHE_CURVE for ASYNC */
|
||||
#if !defined(ECC_CACHE_CURVE)
|
||||
#if !defined(ECC_CACHE_CURVE) && !defined(NO_ECC_CACHE_CURVE)
|
||||
/* Enabled by default for increased async performance,
|
||||
* but not required */
|
||||
#define ECC_CACHE_CURVE
|
||||
#endif
|
||||
#endif /* WOLFSSL_ASYNC_CRYPT */
|
||||
|
|
Loading…
Reference in New Issue