mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-26 09:58:16 +00:00
minor whitespace fixes and changes.txt update
This commit is contained in:
parent
3b07f90524
commit
77d9a8deb2
@ -35,6 +35,7 @@
|
|||||||
|
|
||||||
- Alias Devices: Show a warning in case the user specifically listed a device to use which in a later step is skipped because it is an alias of another active device
|
- Alias Devices: Show a warning in case the user specifically listed a device to use which in a later step is skipped because it is an alias of another active device
|
||||||
- Backend Information: Added new column showing the PCI Address per CUDA/OpenCL device to easier identify broken cards
|
- Backend Information: Added new column showing the PCI Address per CUDA/OpenCL device to easier identify broken cards
|
||||||
|
- Debug Rules: HEX-ify rules debug non-rules outputs that contain colons
|
||||||
- VeraCrypt: Increase password length support for non-boot volumes from 64 to 128
|
- VeraCrypt: Increase password length support for non-boot volumes from 64 to 128
|
||||||
|
|
||||||
##
|
##
|
||||||
|
@ -23,18 +23,21 @@ static void debugfile_format_plain (hashcat_ctx_t *hashcat_ctx, const u8 *plain_
|
|||||||
if (plain_ptr[i] < 0x20)
|
if (plain_ptr[i] < 0x20)
|
||||||
{
|
{
|
||||||
needs_hexify = 1;
|
needs_hexify = 1;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (plain_ptr[i] > 0x7f)
|
if (plain_ptr[i] > 0x7f)
|
||||||
{
|
{
|
||||||
needs_hexify = 1;
|
needs_hexify = 1;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (plain_ptr[i] == ':')
|
if (plain_ptr[i] == ':')
|
||||||
{
|
{
|
||||||
needs_hexify = 1;
|
needs_hexify = 1;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user