We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dafc61c commit 982b766Copy full SHA for 982b766
sha256.cs
@@ -134,7 +134,7 @@ public byte[] HashComputation(byte[] message)
134
/// <summary>Right shift of n bits of the binary word a.</summary>
135
/// <param name="a">32-bits word </param>
136
/// <param name="n"> Bits for rotate shift </param>
137
- /// <returns></returns>
+ /// <returns>A new 32-bits word</returns>
138
static uint ShR(uint a, byte n) => (a >> n);
139
140
private static uint Ch(uint x, uint y, uint z) => (((x) & (y)) ^ ((~x) & (z)));
0 commit comments