We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46b6aee commit ee87732Copy full SHA for ee87732
noir_stdlib/src/sha256.nr
@@ -7,7 +7,7 @@ fn rotr32(a: u32, b: u32) -> u32 // 32-bit right rotation
7
{
8
// None of the bits overlap between `(a >> b)` and `(a << (32 - b))`
9
// Addition is then equivalent to OR, with fewer constraints.
10
- (a >> b) + (a << (32 as u32 - b))
+ (a >> b) + (a << (32 - b))
11
}
12
13
fn ch(x: u32, y: u32, z: u32) -> u32
0 commit comments