aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-10-26 17:45:47 +0000
committerlloyd <[email protected]>2009-10-26 17:45:47 +0000
commit3f96a3c691e3f823de932f696f373b0399a9acc7 (patch)
tree7b8210892d0bcf19439becfd6937d6d25843042b /src
parent3b2eef9bd141e70b7dfe90fe8cc57d6561733fbc (diff)
Indent fix
Diffstat (limited to 'src')
-rw-r--r--src/hash/sha2/sha2_32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash/sha2/sha2_32.cpp b/src/hash/sha2/sha2_32.cpp
index 9fbcae44d..2a63eef25 100644
--- a/src/hash/sha2/sha2_32.cpp
+++ b/src/hash/sha2/sha2_32.cpp
@@ -62,7 +62,7 @@ void SHA_224_256_BASE::compress_n(const byte input[], u32bit blocks)
for(u32bit j = 16; j != 64; ++j)
W[j] = sigma(W[j- 2], 17, 19, 10) + W[j- 7] +
- sigma(W[j-15], 7, 18, 3) + W[j-16];
+ sigma(W[j-15], 7, 18, 3) + W[j-16];
F1(A, B, C, D, E, F, G, H, W[ 0], 0x428A2F98);
F1(H, A, B, C, D, E, F, G, W[ 1], 0x71374491);