Add ChangeLog and migration guide for MBEDTLS_ECP_FIXED_POINT_OPTIM

Signed-off-by: kXuan <kxuanobj@gmail.com>
This commit is contained in:
kXuan 2021-06-01 11:36:18 +08:00
parent b2b3ec4f7a
commit 22fc906d57
No known key found for this signature in database
GPG Key ID: E53EA872AFCA251C
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,4 @@
API changes
* The option `MBEDTLS_ECP_FIXED_POINT_OPTIM` use pre-computed comb tables
instead of computing tables in runtime. Thus, this option now use more
ROM, and it does not increase RAM usage in runtime anymore.

View File

@ -0,0 +1,8 @@
Change MBEDTLS_ECP_FIXED_POINT_OPTIM behaviour
------------------------------------------------------
The option MBEDTLS_ECP_FIXED_POINT_OPTIM now use more ROM and does not increase
peak RAM usage anymore.
If you are limited by ROM space, you can define MBEDTLS_ECP_FIXED_POINT_OPTIM
to `0` in your config file. This will save about 50 KiB ROM space.