Skip to content

Fix overflow in GetHexStringCore #111296

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,9 @@ private static void GetHexStringCore(Span<char> destination, bool lowercase)

// Don't overfill the buffer if the destination is smaller than the buffer size. We need to round up when
// when dividing by two to account for an odd-length destination.
int needed = (destination.Length + 1) / 2;
// Adding one to a span of length int.MaxValue may overflow. This is handled by the unsigned shift to the right
// which will correct the overflow.
int needed = (destination.Length + 1) >>> 1;
Span<byte> remainingRandom = randomBuffer.Slice(0, Math.Min(RandomBufferSize, needed));
RandomNumberGenerator.Fill(remainingRandom);

Expand Down
Loading