diff options
author | Tomas Mraz <tomas@openssl.org> | 2021-02-04 19:25:44 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2021-02-09 13:41:11 +0100 |
commit | 4d2a6159db1060ca38a3808cfa60bac46737c670 (patch) | |
tree | 5fb6c8b2361e07845de0b8921fa2c5d8b615f918 /CHANGES.md | |
parent | Enhanced integer parsing in OSSL_PARAM_allocate_from_text (diff) | |
download | openssl-4d2a6159db1060ca38a3808cfa60bac46737c670.tar.xz openssl-4d2a6159db1060ca38a3808cfa60bac46737c670.zip |
Deprecate BN_pseudo_rand() and BN_pseudo_rand_range()
The functions are obsolete aliases for BN_rand() and BN_rand_range()
since 1.1.0.
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14080)
Diffstat (limited to 'CHANGES.md')
-rw-r--r-- | CHANGES.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES.md b/CHANGES.md index 7c934935eb..318cce84fc 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -40,6 +40,12 @@ OpenSSL 3.0 *Rich Salz* + * Deprecated the obsolete BN_pseudo_rand() and BN_pseudo_rand_range() + functions. They are identical to BN_rand() and BN_rand_range() + respectively. + + *Tomáš Mráz* + * Deprecated the obsolete X9.31 RSA key generation related functions BN_X931_generate_Xpq(), BN_X931_derive_prime_ex(), and BN_X931_generate_prime_ex(). |