1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-08 14:51:10 +00:00

Added missing address space on hash-type 27800

This commit is contained in:
Gabriele Gristina 2022-02-13 08:02:29 +01:00
parent ae3eeb1713
commit ed96ff242e
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ DECLSPEC u32 MurmurHash3(const u32 seed, PRIVATE_AS const u32 *data, const u32 s
if (size % 4)
{
const u8* remainder = (u8*)(data + nBlocks);
PRIVATE_AS const u8 *remainder = (PRIVATE_AS u8 *)(data + nBlocks);
u32 val = 0;
switch(size & 3) //Hash remaining bytes as size isn't always aligned by 4

View File

@ -36,7 +36,7 @@ DECLSPEC u32 MurmurHash3(const u32 seed, PRIVATE_AS const u32 *data, const u32 s
if (size % 4)
{
const u8* remainder = (u8*)(data + nBlocks);
PRIVATE_AS const u8 *remainder = (PRIVATE_AS u8 *)(data + nBlocks);
u32 val = 0;
switch(size & 3) //Hash remaining bytes as size isn't always aligned by 4