1
0
mirror of https://github.com/ARMmbed/mbedtls.git synced 2025-05-21 07:56:44 +08:00
mbedtls/docs/3.0-migration-guide.d/remove-rsa-mode-parameter.md
Thomas Daubney 62b0d1dbc8 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>
2021-05-21 17:05:12 +01:00

21 lines
704 B
Markdown

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.