You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ut...@apache.org on 2020/03/09 13:59:17 UTC

[mynewt-core] branch master updated (fc6b872 -> 90eb0f9)

This is an automated email from the ASF dual-hosted git repository.

utzig pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git.


    from fc6b872  Add full console example to console documentation
     add b427251  Update mbedTLS from 2.16.3 to 2.16.5
     add 90eb0f9  mbedtls: fixes to Mynewt config

No new revisions were added by this update.

Summary of changes:
 crypto/mbedtls/include/mbedtls/bignum.h        |  20 +-
 crypto/mbedtls/include/mbedtls/check_config.h  |   8 +
 crypto/mbedtls/include/mbedtls/config.h        |  16 +-
 crypto/mbedtls/include/mbedtls/config_mynewt.h |   6 +-
 crypto/mbedtls/include/mbedtls/ctr_drbg.h      | 218 +++++++++++++----
 crypto/mbedtls/include/mbedtls/hmac_drbg.h     | 309 ++++++++++++++++---------
 crypto/mbedtls/include/mbedtls/version.h       |   8 +-
 crypto/mbedtls/src/aes.c                       |  24 ++
 crypto/mbedtls/src/bignum.c                    | 108 ++++++++-
 crypto/mbedtls/src/cipher.c                    |  14 +-
 crypto/mbedtls/src/ctr_drbg.c                  | 135 +++++------
 crypto/mbedtls/src/ecdsa.c                     |   5 +-
 crypto/mbedtls/src/ecp.c                       |  10 +-
 crypto/mbedtls/src/hmac_drbg.c                 |  25 +-
 crypto/mbedtls/src/pkparse.c                   | 120 +++++++---
 crypto/mbedtls/src/rsa.c                       |  11 +-
 crypto/mbedtls/src/version_features.c          |   3 +
 crypto/mbedtls/src/x509write_csr.c             |   4 +-
 18 files changed, 746 insertions(+), 298 deletions(-)