Add missing Changelog entries

Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
Paul Elliott 2022-07-07 17:06:14 +01:00
parent f518f81d41
commit 237c87ba0e
10 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,3 @@
Features
* cmake now detects if it is being built as a sub-project, and in that case
disables the target export/installation and package configuration.

View file

@ -0,0 +1,4 @@
Bugfix
* Fix MBEDTLS_SVC_KEY_ID_GET_KEY_ID() and MBEDTLS_SVC_KEY_ID_GET_OWNER_ID()
which have been broken, resulting in compilation errors, since Mbed TLS
3.0.

View file

@ -0,0 +1,5 @@
Bugfix
* Ensure that TLS 1.2 ciphersuite/certificate and key selection takes into
account not just the type of the key (RSA vs EC) but also what it can
actually do. Resolves #5831.

View file

@ -0,0 +1,3 @@
Bugfix
* Fix CMake windows host detection, especially when cross compiling.

View file

@ -0,0 +1,2 @@
Features
* Make USE_PSA_CRYPTO compatible with KEY_ID_ENCODES_OWNER. Fixes #5259.

View file

@ -0,0 +1,3 @@
Bugfix
* Fix an error in make where the absence of a generated file caused
make to break on a clean checkout. Fixes #5340.

View file

@ -0,0 +1,3 @@
Bugfix
* Work around an MSVC ARM64 compiler bug causing incorrect behaviour
in mbedtls_mpi_exp_mod(). Reported by Tautvydas Žilys in #5467.

View file

@ -0,0 +1,5 @@
Features
* Add example programs cipher_aead_demo.c, md_hmac_demo.c, aead_demo.c
and hmac_demo.c, which use PSA and the md/cipher interfaces side
by side in order to illustrate how the operation is performed in PSA.
Addresses #5208.

View file

@ -0,0 +1,4 @@
Bugfix
* Removed the prompt to exit from all windows build programs that was causing
issues in CI/CD environments.

View file

@ -0,0 +1,5 @@
New deprecations
* Deprecate mbedtls_ssl_conf_sig_hashes() in favor of the more generic
mbedtls_ssl_conf_sig_algs(). Signature algorithms for the TLS 1.2 and
TLS 1.3 handshake should now be configured with
mbedtls_ssl_conf_sig_algs().