diff options
author | lloyd <[email protected]> | 2009-10-26 17:45:47 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-10-26 17:45:47 +0000 |
commit | 3f96a3c691e3f823de932f696f373b0399a9acc7 (patch) | |
tree | 7b8210892d0bcf19439becfd6937d6d25843042b /src | |
parent | 3b2eef9bd141e70b7dfe90fe8cc57d6561733fbc (diff) |
Indent fix
Diffstat (limited to 'src')
-rw-r--r-- | src/hash/sha2/sha2_32.cpp | 2 |
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); |