Additional corrections to ChangeLog

Commit makes further corrections to the
wording in the ChangeLog entry.

Signed-off-by: Thomas Daubney <thomas.daubney@arm.com>
This commit is contained in:
Thomas Daubney 2021-05-25 16:26:24 +01:00
parent 6f966112c7
commit 731b952b69

View file

@ -1,15 +1,9 @@
Removals Removals
* The RSA module no longer supports private-key operations with the public * The RSA module no longer supports private-key operations with the public
key and vice versa. This change only affects applications which use the key and vice versa.
wrong mode. In this case the wrong mode is to use mode=MBEDTLS_RSA_PUBLIC
with decryption and signing functions and mode=MBEDTLS_RSA_PRIVATE with
encryption and verification functions. Addresses issue #4278.
API changes API changes
* Remove mode parameter from RSA functions. All encryption, * Remove the mode parameter from RSA operation functions. Signature and
decryption, sign and verify functions are affected. Also decryption functions now always use the private key and verification and
removes the RNG parameters from the RSA verify functions. encryption use the public key. Verification functions also no longer have
Existing user code which utilises these RSA functions must RNG parameters.
remove the mode parameter. * The RNG is now mandatory for all private-key RSA operations.
* RNG is now mandatory for all private-key RSA operations. Existing user code
which does not use an RNG with private-key RSA functions must now be
updated to do so.