1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-26 00:18:36 +00:00

Fixed vector datatype support in -m 21100 only -P mode and only -a 3 mode were affected

This commit is contained in:
Jens Steube 2021-04-25 21:25:28 +02:00
parent 092e838cf4
commit 1879cbefd2
2 changed files with 3 additions and 2 deletions

View File

@ -71,7 +71,7 @@ KERNEL_FQ void m21100_mxx (KERN_ATTR_VECTOR ())
const u32 salt_len = salt_bufs[SALT_POS].salt_len;
u32 s[64] = { 0 };
u32x s[64] = { 0 };
for (u32 i = 0, idx = 0; i < salt_len; i += 4, idx += 1)
{
@ -211,7 +211,7 @@ KERNEL_FQ void m21100_sxx (KERN_ATTR_VECTOR ())
const u32 salt_len = salt_bufs[SALT_POS].salt_len;
u32 s[64] = { 0 };
u32x s[64] = { 0 };
for (u32 i = 0, idx = 0; i < salt_len; i += 4, idx += 1)
{

View File

@ -53,6 +53,7 @@
- Fixed too early execution of some module functions which could make use of non-final values opts_type and opti_type
- Fixed tuning database search if a device was not assigned an alias it couldn't be found in general
- Fixed unexpected non-unique salts in multi-hash cracking in Bitcoin/Litecoin wallet.dat module which lead to false negatives
- Fixed vector datatype support in -m 21100 only -P mode and only -a 3 mode were affected
##
## Improvements