Skip to content

Commit 982b766

Browse files
author
Quetzal Rivera
authored
Update sha256.cs
1 parent dafc61c commit 982b766

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sha256.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public byte[] HashComputation(byte[] message)
134134
/// <summary>Right shift of n bits of the binary word a.</summary>
135135
/// <param name="a">32-bits word </param>
136136
/// <param name="n"> Bits for rotate shift </param>
137-
/// <returns></returns>
137+
/// <returns>A new 32-bits word</returns>
138138
static uint ShR(uint a, byte n) => (a >> n);
139139

140140
private static uint Ch(uint x, uint y, uint z) => (((x) & (y)) ^ ((~x) & (z)));

0 commit comments

Comments
 (0)