commit | d602084cde718019249e1754613951c1b0a259a7 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Jul 17 16:28:21 2019 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Mon Jan 06 11:40:23 2020 +0100 |
tree | 5b34c77535f1288d84f1bfcade0fc0602baecb3c | |
parent | 6ba5a3fc57ac48d46ac7cc27543ffc6d4d5157e8 [diff] [blame] |
Implement NO_SHA384 in MD layer and PSA
diff --git a/include/mbedtls/md_internal.h b/include/mbedtls/md_internal.h index bb876ef..0922dff 100644 --- a/include/mbedtls/md_internal.h +++ b/include/mbedtls/md_internal.h
@@ -79,7 +79,9 @@ extern const mbedtls_md_info_t mbedtls_sha256_info; #endif #if defined(MBEDTLS_SHA512_C) +#if !defined(MBEDTLS_SHA512_NO_SHA384) extern const mbedtls_md_info_t mbedtls_sha384_info; +#endif extern const mbedtls_md_info_t mbedtls_sha512_info; #endif