Adds ChangeLog and Migration guide entry

Commit adds relevant entry to the
ChangeLog and to the
Migration guide.

Signed-off-by: Thomas Daubney <thomas.daubney@arm.com>
This commit is contained in:
Thomas Daubney 2021-05-21 16:55:03 +01:00
parent d58ed587fd
commit 62b0d1dbc8
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,6 @@
API changes
* Remove mode parameter from RSA functions. All encryption,
decryption, sign and verify functions are affected. Also
removes the RNG parameters from the RSA verify functions.
Existing user code which utilises these RSA functions must
remove the mode parameter.

View File

@ -0,0 +1,20 @@
Remove the mode parameter from RSA functions
--------------------------------------------
This affects all users who use the RSA encryption, decryption, sign and
verify APIs.
If you were using the mode parameter to specify the wrong mode then
this behaviour is no longer supported. You must delete the mode
parameter from your RSA function calls.
Remove the RNG parameter from RSA functions
--------------------------------------------
This affects all users who use the RSA verify functions.
If you were using the RNG parameters then you must remove
them from your function calls. Since usiong the wrong mode
is no longer supported, the RNG parameters namely f_rng
and p_rng are no longer needed.