1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-07-03 21:32:35 +00:00

minor whitespace fixes, per #2841

This commit is contained in:
Royce Williams 2021-06-21 07:47:22 -08:00
parent 3cd638f624
commit 1e88990b46
31 changed files with 108 additions and 108 deletions

View File

@ -45,9 +45,9 @@ DECLSPEC u32 MurmurHash (const u32 seed, const u32 *w, const int pw_len)
hash ^= hash >> R; hash ^= hash >> R;
} }
hash *= M; hash *= M;
hash ^= hash >> 10; hash ^= hash >> 10;
hash *= M; hash *= M;
hash ^= hash >> 17; hash ^= hash >> 17;
#undef M #undef M

View File

@ -44,9 +44,9 @@ DECLSPEC u32 MurmurHash (const u32 seed, const u32 *w, const int pw_len)
hash ^= hash >> R; hash ^= hash >> R;
} }
hash *= M; hash *= M;
hash ^= hash >> 10; hash ^= hash >> 10;
hash *= M; hash *= M;
hash ^= hash >> 17; hash ^= hash >> 17;
#undef M #undef M

View File

@ -64,9 +64,9 @@ DECLSPEC u32x MurmurHash_w0 (const u32 seed, const u32x w0, const u32 *w, const
} }
} }
hash *= M; hash *= M;
hash ^= hash >> 10; hash ^= hash >> 10;
hash *= M; hash *= M;
hash ^= hash >> 17; hash ^= hash >> 17;
#undef M #undef M

View File

@ -110,7 +110,7 @@ sub pdf_compute_encryption_key_owner
} }
else else
{ {
$o_key = substr($o_digest, 0, 16); #length is always 128 bits or 16 bytes $o_key = substr($o_digest, 0, 16); #length is always 128 bits or 16 bytes
} }
#printf("\$o_key = %s\n", unpack ("H*", $o_key)); #printf("\$o_key = %s\n", unpack ("H*", $o_key));