From 6108acaad2200e26b37ff09446bf242595b43ab1 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Fri, 21 Aug 2026 16:59:54 +0300 Subject: [PATCH] cipher: fix mention of the `ecb` crate in changelog --- cipher/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cipher/CHANGELOG.md b/cipher/CHANGELOG.md index 494b5bba2..fbb133532 100644 --- a/cipher/CHANGELOG.md +++ b/cipher/CHANGELOG.md @@ -58,7 +58,7 @@ Users should migrate to `cipher` v0.5.1 and `crypto-common` v0.2.1 using `cargo ### Removed - `std` feature ([#1691]) - `BlockCipherEncrypt::encrypt_padded*` and `BlockCipherDecrypt::decrypt_padded*` methods. - Users of the ECB mode should use the `ecb-mode` crate instead. ([#2245]) + Users of the ECB mode should use the `ecb` crate instead. ([#2245]) - `AsyncStreamCipher` trait ([#2280]) [#1358]: https://github.com/RustCrypto/traits/pull/1358