enable-fpecc enable-ecc
This commit is contained in:
parent
a990a5cebf
commit
ce65bef5a8
@ -5495,7 +5495,7 @@ int wolfSSL_Cleanup(void)
|
|||||||
ret = BAD_MUTEX_E;
|
ret = BAD_MUTEX_E;
|
||||||
|
|
||||||
#if defined(HAVE_ECC) && defined(FP_ECC)
|
#if defined(HAVE_ECC) && defined(FP_ECC)
|
||||||
ecc_fp_free();
|
wc_ecc_fp_free();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
#include <wolfssl/wolfcrypt/settings.h>
|
#include <wolfssl/wolfcrypt/settings.h>
|
||||||
#ifdef HAVE_ECC
|
#ifdef HAVE_ECC
|
||||||
#include <wolfssl/wolfcrypt/ecc.h> /* ecc_fp_free */
|
#include <wolfssl/wolfcrypt/ecc.h> /* wc_ecc_fp_free */
|
||||||
#endif
|
#endif
|
||||||
#include <wolfssl/error-ssl.h>
|
#include <wolfssl/error-ssl.h>
|
||||||
|
|
||||||
@ -409,7 +409,7 @@ done:
|
|||||||
|
|
||||||
#if defined(NO_MAIN_DRIVER) && defined(HAVE_ECC) && defined(FP_ECC) \
|
#if defined(NO_MAIN_DRIVER) && defined(HAVE_ECC) && defined(FP_ECC) \
|
||||||
&& defined(HAVE_THREAD_LS)
|
&& defined(HAVE_THREAD_LS)
|
||||||
ecc_fp_free(); /* free per thread cache */
|
wc_ecc_fp_free(); /* free per thread cache */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef WOLFSSL_TIRTOS
|
#ifndef WOLFSSL_TIRTOS
|
||||||
@ -603,7 +603,7 @@ static THREAD_RETURN WOLFSSL_THREAD run_wolfssl_server(void* args)
|
|||||||
|
|
||||||
#if defined(NO_MAIN_DRIVER) && defined(HAVE_ECC) && defined(FP_ECC) \
|
#if defined(NO_MAIN_DRIVER) && defined(HAVE_ECC) && defined(FP_ECC) \
|
||||||
&& defined(HAVE_THREAD_LS)
|
&& defined(HAVE_THREAD_LS)
|
||||||
ecc_fp_free(); /* free per thread cache */
|
wc_ecc_fp_free(); /* free per thread cache */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef WOLFSSL_TIRTOS
|
#ifndef WOLFSSL_TIRTOS
|
||||||
|
@ -264,7 +264,7 @@ int benchmark_test(void *args)
|
|||||||
bench_eccKeyGen();
|
bench_eccKeyGen();
|
||||||
bench_eccKeyAgree();
|
bench_eccKeyAgree();
|
||||||
#if defined(FP_ECC)
|
#if defined(FP_ECC)
|
||||||
ecc_fp_free();
|
wc_ecc_fp_free();
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user