Changelog: minor copyediting

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
Gilles Peskine 2022-06-09 18:51:18 +02:00
parent e1efbf7f36
commit 76c1c6b9c1
10 changed files with 13 additions and 13 deletions

View file

@ -1,4 +1,4 @@
Features Features
* Add the function mbedtls_timing_get_final_delay() to access the private * Add the function mbedtls_timing_get_final_delay() to access the private
final delay field in an mbedtls_timing_delay_context, as requested in final delay field in an mbedtls_timing_delay_context, as requested in
#5183 #5183.

View file

@ -1,4 +1,4 @@
Features Features
* Add function mbedtls_ssl_is_handshake_over() to enable querying if the SSL * Add function mbedtls_ssl_is_handshake_over() to enable querying if the SSL
Handshake has completed or not, and thus whether to continue calling Handshake has completed or not, and thus whether to continue calling
mbedtls_ssl_handshake_step(), requested in #4383 mbedtls_ssl_handshake_step(), requested in #4383.

View file

@ -1,4 +1,4 @@
Features Features
* Add the function mbedtls_ssl_get_own_cid() to access our own connection id * Add the function mbedtls_ssl_get_own_cid() to access our own connection id
within mbedtls_ssl_context, as requested in #5184 within mbedtls_ssl_context, as requested in #5184.

View file

@ -1,3 +1,3 @@
New deprecations New deprecations
* Deprecate mbedtls_cipher_setup_psa() function. * Deprecate mbedtls_cipher_setup_psa(). Use psa_aead_xxx() or
Use psa_aead_xxx() / psa_cipher_xxx() directly instead. psa_cipher_xxx() directly instead.

View file

@ -1,3 +1,3 @@
Bugfix Bugfix
* Fix a race condition in out-of-source builds with CMake when generated data * Fix a race condition in out-of-source builds with CMake when generated data
files are already present. Fixes #5374 files are already present. Fixes #5374.

View file

@ -1,4 +1,4 @@
Bugfix Bugfix
* Fix a bug in x25519 example program where the removal of * Fix a bug in the x25519 example program where the removal of
MBEDTLS_ECDH_LEGACY_CONTEXT caused the program not to run. Fixes #4901 and MBEDTLS_ECDH_LEGACY_CONTEXT caused the program not to run. Fixes #4901 and
#3191. #3191.

View file

@ -1,3 +1,3 @@
Features Features
* Add mbedtls_ecp_export() function to export ECP * Add a function mbedtls_ecp_export() to export ECP key pair parameters.
keypair parameters. Fixes #4838. Fixes #4838.

View file

@ -1,2 +1,2 @@
Bugfix Bugfix
* Fix memory leak if mbedtls_ssl_config_defaults() call is repeated * Fix a memory leak if mbedtls_ssl_config_defaults() is called twice.

View file

@ -1,4 +1,4 @@
Changes Changes
* Return PSA_ERROR_INVALID_ARGUMENT if the algorithm passed to singleshot * Return PSA_ERROR_INVALID_ARGUMENT if the algorithm passed to one-shot
AEAD functions is not an AEAD algorithm. This aligns them with the AEAD functions is not an AEAD algorithm. This aligns them with the
multipart functions, and the PSA Crypto API 1.1 spec. multipart functions, and the PSA Crypto API 1.1 specification.

View file

@ -1,4 +1,4 @@
Features Features
* Extend the existing PSA_ALG_TLS12_PSK_TO_MS() algorithm to support * Extend the existing PSA_ALG_TLS12_PSK_TO_MS() algorithm to support
mixed-psk. Add an optional input PSA_KEY_DERIVATION_INPUT_OTHER_SECRET mixed-PSK. Add an optional input PSA_KEY_DERIVATION_INPUT_OTHER_SECRET
holding the other secret. holding the other secret.