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

pull/2775/head
Jens Steube 3 years ago
parent 092e838cf4
commit 1879cbefd2

@ -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)
{

@ -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

Loading…
Cancel
Save