-
Notifications
You must be signed in to change notification settings - Fork 734
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cherry-pick RELEASES.md from release-branch/0.17.12.
Pick up the changelog entry for 0.17.12.
- Loading branch information
1 parent
7b06be8
commit 8d3475a
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Version 0.17.12 (2025-03-05) | ||
============================ | ||
Bug fix: https://github.com/briansmith/ring/pull/2447 for denial of service (DoS). | ||
|
||
Fixes a panic in `ring::aead::quic::HeaderProtectionKey::new_mask()` when | ||
integer overflow checking is enabled. Integer overflow checking is not enabled | ||
in release mode by default, but `RUSTFLAGS="-C overflow-checks"` or | ||
`overflow-checks = true` in the Cargo.toml profile can override this. | ||
|
||
Fixes a panic in when using `ring::aead::{AES_128_GCM, AES_256_GCM}` when | ||
integer overflow checking is enabled, when encrypting/decrypting approximately | ||
68,719,476,700 bytes (about 64 gigabytes) of data in a single chunk. Integer | ||
overflow checking is not enabled in release mode by default, but | ||
`RUSTFLAGS="-C overflow-checks"` or `overflow-checks = true` in the Cargo.toml | ||
profile can override this. |