Minor tune-up to ChangeLog & documentation

- fix a recurring typo
- use clearer names

Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
Manuel Pégourié-Gonnard 2022-11-24 09:40:12 +01:00
parent 3518fb11d0
commit fecc6b2fe4
2 changed files with 6 additions and 6 deletions

View File

@ -1,8 +1,8 @@
Features Features
* Some modules can now use PSA drivers for hashes, including with no * Some modules can now use PSA drivers for hashes, including with no
built-in implementation present, but only in some configurations. built-in implementation present, but only in some configurations.
- RSA PKCS#1 v2.1, PKCS5, PKCS12 and EC J-PAKE now use hashes from PSA - RSA OAEP and PSS (PKCS#1 v2.1), PKCS5, PKCS12 and EC J-PAKE now use
when (and only when) MBEDTLS_MD_C is disabled. hashes from PSA when (and only when) MBEDTLS_MD_C is disabled.
- PEM parsing of encrypted files now uses MD-5 from PSA when (and only - PEM parsing of encrypted files now uses MD-5 from PSA when (and only
when) MBEDTLS_MD5_C is disabled. when) MBEDTLS_MD5_C is disabled.
See the documentation of the corresponding macros in mbedtls_config.h for See the documentation of the corresponding macros in mbedtls_config.h for

View File

@ -1147,7 +1147,7 @@
* before doing any PKCS#1 v2.1 operation. * before doing any PKCS#1 v2.1 operation.
* *
* \warning When building with MBEDTLS_MD_C, all hashes used with this * \warning When building with MBEDTLS_MD_C, all hashes used with this
* need to be available a built-ins (that is, for SHA-256, MBEDTLS_SHA256_C, * need to be available as built-ins (that is, for SHA-256, MBEDTLS_SHA256_C,
* etc.) as opposed to just PSA drivers. So far, PSA drivers are only used by * etc.) as opposed to just PSA drivers. So far, PSA drivers are only used by
* this module in builds where MBEDTLS_MD_C is disabled. * this module in builds where MBEDTLS_MD_C is disabled.
* *
@ -2440,7 +2440,7 @@
* before doing any EC J-PAKE operations. * before doing any EC J-PAKE operations.
* *
* \warning When building with MBEDTLS_MD_C, all hashes used with this * \warning When building with MBEDTLS_MD_C, all hashes used with this
* need to be available a built-ins (that is, for SHA-256, MBEDTLS_SHA256_C, * need to be available as built-ins (that is, for SHA-256, MBEDTLS_SHA256_C,
* etc.) as opposed to just PSA drivers. So far, PSA drivers are only used by * etc.) as opposed to just PSA drivers. So far, PSA drivers are only used by
* this module in builds where MBEDTLS_MD_C is disabled. * this module in builds where MBEDTLS_MD_C is disabled.
*/ */
@ -2788,7 +2788,7 @@
* before doing any PKCS5 operation. * before doing any PKCS5 operation.
* *
* \warning When building with MBEDTLS_MD_C, all hashes used with this * \warning When building with MBEDTLS_MD_C, all hashes used with this
* need to be available a built-ins (that is, for SHA-256, MBEDTLS_SHA256_C, * need to be available as built-ins (that is, for SHA-256, MBEDTLS_SHA256_C,
* etc.) as opposed to just PSA drivers. So far, PSA drivers are only used by * etc.) as opposed to just PSA drivers. So far, PSA drivers are only used by
* this module in builds where MBEDTLS_MD_C is disabled. * this module in builds where MBEDTLS_MD_C is disabled.
* *
@ -2812,7 +2812,7 @@
* before doing any PKCS12 operation. * before doing any PKCS12 operation.
* *
* \warning When building with MBEDTLS_MD_C, all hashes used with this * \warning When building with MBEDTLS_MD_C, all hashes used with this
* need to be available a built-ins (that is, for SHA-256, MBEDTLS_SHA256_C, * need to be available as built-ins (that is, for SHA-256, MBEDTLS_SHA256_C,
* etc.) as opposed to just PSA drivers. So far, PSA drivers are only used by * etc.) as opposed to just PSA drivers. So far, PSA drivers are only used by
* this module in builds where MBEDTLS_MD_C is disabled. * this module in builds where MBEDTLS_MD_C is disabled.
* *