mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-22 16:18:09 +00:00
tests: allow tests with 05 AND 04 in zlib header for electrum 5
This commit is contained in:
parent
d0a59db595
commit
415842524d
@ -168,7 +168,7 @@ sub module_generate_hash
|
|||||||
|
|
||||||
my $zlib_rate = ord (substr ($compressed_data, 2, 1)) & 0x07;
|
my $zlib_rate = ord (substr ($compressed_data, 2, 1)) & 0x07;
|
||||||
|
|
||||||
if ($zlib_rate != 0x05)
|
if (($zlib_rate != 0x04) && ($zlib_rate != 0x05))
|
||||||
{
|
{
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user