1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-17 01:52:06 +00:00

Removed useless spaces.

This commit is contained in:
DoZ10 2017-04-20 19:30:04 -04:00
parent 976f50a56b
commit 5689892e46

View File

@ -216,9 +216,8 @@ void blake2b_compress (const u32x pw[16], const u64 pw_len, u64x digest[8])
BLAKE2B_ROUND(10);
BLAKE2B_ROUND(11);
for (i = 0; i < 8; ++i) {
for (i = 0; i < 8; ++i)
S->h[i] = S->h[i] ^ v[i] ^ v[i + 8];
}
for (i = 0; i < 8; ++i)
digest[i] = load64_reverse(&(S->h[i]));
@ -254,9 +253,7 @@ void m00600s (__global pw_t *pws, __global const kernel_rule_t *rules_buf, __glo
for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
{
const u32x w0r = words_buf_r[il_pos / VECT_SIZE];
const u32x w0 = w0l | w0r;
u32x pw[16];
pw[ 1] = w0;