diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-02-20 10:47:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-20 10:47:44 +0100 |
commit | 7376cbdc94f2c00f006b153e33349fe605e2112a (patch) | |
tree | 6c08744f3c8f15f998aac44d04c351090ddd1933 /thirdparty/mbedtls/library/version_features.c | |
parent | 558c7d22fa3239ac8347184712dc568a6cb15712 (diff) | |
parent | 2b8b738391ed34b371673e4b62c7bd22e3503e2a (diff) |
Merge pull request #26072 from Faless/net/mbedtls_1.16
Update mbedtls to 2.16.0 (LTS release) + ubsan hack
Diffstat (limited to 'thirdparty/mbedtls/library/version_features.c')
-rw-r--r-- | thirdparty/mbedtls/library/version_features.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/thirdparty/mbedtls/library/version_features.c b/thirdparty/mbedtls/library/version_features.c index 777b6034c4..4c36d3caaa 100644 --- a/thirdparty/mbedtls/library/version_features.c +++ b/thirdparty/mbedtls/library/version_features.c @@ -84,6 +84,9 @@ static const char *features[] = { #if defined(MBEDTLS_DEPRECATED_REMOVED) "MBEDTLS_DEPRECATED_REMOVED", #endif /* MBEDTLS_DEPRECATED_REMOVED */ +#if defined(MBEDTLS_CHECK_PARAMS) + "MBEDTLS_CHECK_PARAMS", +#endif /* MBEDTLS_CHECK_PARAMS */ #if defined(MBEDTLS_TIMING_ALT) "MBEDTLS_TIMING_ALT", #endif /* MBEDTLS_TIMING_ALT */ @@ -339,6 +342,9 @@ static const char *features[] = { #if defined(MBEDTLS_ECP_NIST_OPTIM) "MBEDTLS_ECP_NIST_OPTIM", #endif /* MBEDTLS_ECP_NIST_OPTIM */ +#if defined(MBEDTLS_ECP_RESTARTABLE) + "MBEDTLS_ECP_RESTARTABLE", +#endif /* MBEDTLS_ECP_RESTARTABLE */ #if defined(MBEDTLS_ECDSA_DETERMINISTIC) "MBEDTLS_ECDSA_DETERMINISTIC", #endif /* MBEDTLS_ECDSA_DETERMINISTIC */ |