Consistently use the name tinycrypt over uecc
We called in tinycrypt in the file names, but uecc in config.h, all.sh and
other places, which could be confusing. Just use tinycrypt everywhere because
that's the name of the project and repo where we took the files.
The changes were made using the following commands (with GNU sed and zsh):
sed -i 's/uecc/tinycrypt/g' **/*.[ch] tests/scripts/all.sh
sed -i 's/MBEDTLS_USE_UECC/MBEDTLS_USE_TINYCRYPT/g' **/*.[ch] tests/scripts/all.sh scripts/config.pl
diff --git a/include/mbedtls/config.h b/include/mbedtls/config.h
index 4d82f62..aefca9c 100644
--- a/include/mbedtls/config.h
+++ b/include/mbedtls/config.h
@@ -2255,7 +2255,7 @@
#define MBEDTLS_ECP_C
/**
- * \def MBEDTLS_USE_UECC
+ * \def MBEDTLS_USE_TINYCRYPT
*
* Enable the tinycrypt ECC library.
*
@@ -2266,7 +2266,7 @@
* This module provides alternative ECC handling functions replacing
* native MBEDTLS ECP module.
*/
-//#define MBEDTLS_USE_UECC
+//#define MBEDTLS_USE_TINYCRYPT
/**
* \def MBEDTLS_ENTROPY_C