blob: 406004f45d156c05f362ba22910915832b6dc666 [file] [log] [blame] [view]
Thomas Daubney62b0d1d2021-05-21 16:55:03 +01001Remove the mode parameter from RSA functions
2--------------------------------------------
3
4This affects all users who use the RSA encryption, decryption, sign and
5verify APIs.
6
Thomas Daubney2fbbe1d2021-05-24 10:53:57 +01007You must delete the mode parameter from your RSA function calls.
8Using the correct modes are now the default and only behaviour, and this
9cannot be changed. If you were using the mode parameter to specify the
10wrong mode then this behaviour is no longer supported. For reference the
11correct, supported modes are: Public keys for encryption and verification
12functions and private keys for decryption and signing functions, but the
13user does not have to specify this.
Thomas Daubney62b0d1d2021-05-21 16:55:03 +010014
15Remove the RNG parameter from RSA functions
16--------------------------------------------
17
18This affects all users who use the RSA verify functions.
19
20If you were using the RNG parameters then you must remove
Thomas Daubney2fbbe1d2021-05-24 10:53:57 +010021them from your function calls. Since using the wrong mode
Thomas Daubney62b0d1d2021-05-21 16:55:03 +010022is no longer supported, the RNG parameters namely f_rng
23and p_rng are no longer needed.