mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-30 22:43:08 +03:00
Merge pull request #4588 from TRodziewicz/remove_MD2_MD4_RC4_Blowfish_and_XTEA
Remove MD2, MD4, RC4, Blowfish and XTEA
This commit is contained in:
@ -0,0 +1,8 @@
|
||||
Remove MD2, MD4, RC4, Blowfish and XTEA algorithms
|
||||
--
|
||||
|
||||
This change affects users of the MD2, MD4, RC4, Blowfish and XTEA algorithms.
|
||||
|
||||
They are already niche or obsolete and most of them are weak or broken. For
|
||||
those reasons possible users should consider switching to modern and safe
|
||||
alternatives to be found in literature.
|
@ -13,14 +13,6 @@ original names of those functions. The renamed functions are:
|
||||
|------------------------------|--------------------------|
|
||||
| mbedtls_ctr_drbg_update_ret | mbedtls_ctr_drbg_update |
|
||||
| mbedtls_hmac_drbg_update_ret | mbedtls_hmac_drbg_update |
|
||||
| mbedtls_md2_starts_ret | mbedtls_md2_starts |
|
||||
| mbedtls_md2_update_ret | mbedtls_md2_update |
|
||||
| mbedtls_md2_finish_ret | mbedtls_md2_finish |
|
||||
| mbedtls_md2_ret | mbedtls_md2 |
|
||||
| mbedtls_md4_starts_ret | mbedtls_md4_starts |
|
||||
| mbedtls_md4_update_ret | mbedtls_md4_update |
|
||||
| mbedtls_md4_finish_ret | mbedtls_md4_finish |
|
||||
| mbedtls_md4_ret | mbedtls_md4 |
|
||||
| mbedtls_md5_starts_ret | mbedtls_md5_starts |
|
||||
| mbedtls_md5_update_ret | mbedtls_md5_update |
|
||||
| mbedtls_md5_finish_ret | mbedtls_md5_finish |
|
||||
|
@ -22,7 +22,7 @@ in order to match the new signature.
|
||||
Deprecated functions were removed from hashing modules
|
||||
------------------------------------------------------
|
||||
|
||||
Modules: MD2, MD4, MD5, SHA1, SHA256, SHA512, MD.
|
||||
Modules: MD5, SHA1, SHA256, SHA512, MD.
|
||||
|
||||
- The functions `mbedtls_xxx_starts()`, `mbedtls_xxx_update()`,
|
||||
`mbedtls_xxx_finish()` and `mbedtls_xxx()` were removed. Please use the
|
||||
|
Reference in New Issue
Block a user