Skip to content
Snippets Groups Projects
Commit 09d9c2c9 authored by Squirrel's avatar Squirrel Committed by GitHub
Browse files

Fix to support u32::MAX (#9188)


* Fix to support u32::MAX

* Update primitives/runtime/src/random_number_generator.rs

Co-authored-by: default avatarAndronik Ordian <write@reusable.software>

Co-authored-by: default avatarBastian Köcher <bkchr@users.noreply.github.com>
Co-authored-by: default avatarAndronik Ordian <write@reusable.software>
parent f20edfa2
Branches
No related merge requests found
......@@ -27,6 +27,8 @@ use crate::traits::{Hash, TrailingZeroInput};
///
/// It can be saved and later reloaded using the Codec traits.
///
/// (It is recommended to use the `rand_chacha` crate as an alternative to this where possible.)
///
/// Example:
/// ```
/// use sp_runtime::traits::{Hash, BlakeTwo256};
......@@ -63,7 +65,7 @@ impl<Hashing: Hash> RandomNumberGenerator<Hashing> {
/// Returns a number at least zero, at most `max`.
pub fn pick_u32(&mut self, max: u32) -> u32 {
let needed = (4 - max.leading_zeros() / 8) as usize;
let top = ((1 << (needed as u64 * 8)) / ((max + 1) as u64) * ((max + 1) as u64) - 1) as u32;
let top = ((1 << (needed as u64 * 8)) / (max as u64 + 1) * (max as u64 + 1) - 1) as u32;
loop {
if self.offset() + needed > self.current.as_ref().len() {
// rehash
......@@ -102,3 +104,15 @@ impl<Hashing: Hash> RandomNumberGenerator<Hashing> {
}
}
}
#[cfg(test)]
mod tests {
use super::RandomNumberGenerator;
use crate::traits::{Hash, BlakeTwo256};
#[test]
fn does_not_panic_on_max() {
let seed = BlakeTwo256::hash(b"Fourty-two");
let _random = RandomNumberGenerator::<BlakeTwo256>::new(seed).pick_u32(u32::MAX);
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment