This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
from fff767e2e app build:enhance apps to support independent out-of-tree
builds
add b05c967ae mbedtls-alt/dev-alt: complement cloning capability
add 4fc6e7ca0 mbedtls-alt/aes-alt: Illegal parameter detection for aes
related functions
add 83d3256f9 mbedtls-alt/ripemd160: add ripemd160 alternative
implementation
add 194269dbb mbedtls-alt/poly1305-alt: add poly1305 alternative
implementation
add e42de5d36 mbedtls-alt/bignum: add bignum alternative implementation
via /dev/mpi
No new revisions were added by this update.
Summary of changes:
crypto/mbedtls/Kconfig | 15 ++
crypto/mbedtls/Makefile | 12 +
crypto/mbedtls/include/aes_alt.h | 2 +-
crypto/mbedtls/include/mbedtls/mbedtls_config.h | 13 +-
.../mbedtls/include/{md5_alt.h => poly1305_alt.h} | 10 +-
.../mbedtls/include/{md5_alt.h => ripemd160_alt.h} | 10 +-
crypto/mbedtls/source/aes_alt.c | 83 +++++-
crypto/mbedtls/source/bignum_alt.c | 299 +++++++++++++++++++++
crypto/mbedtls/source/dev_alt.c | 2 +-
.../source/{sha256_alt.c => poly1305_alt.c} | 71 +++--
.../mbedtls/source/{md5_alt.c => ripemd160_alt.c} | 26 +-
11 files changed, 487 insertions(+), 56 deletions(-)
copy crypto/mbedtls/include/{md5_alt.h => poly1305_alt.h} (81%)
copy crypto/mbedtls/include/{md5_alt.h => ripemd160_alt.h} (81%)
create mode 100644 crypto/mbedtls/source/bignum_alt.c
copy crypto/mbedtls/source/{sha256_alt.c => poly1305_alt.c} (56%)
copy crypto/mbedtls/source/{md5_alt.c => ripemd160_alt.c} (70%)