mirror of
https://github.com/hashcat/hashcat.git
synced 2025-02-16 17:42:04 +00:00
Use scalar swap32() version for scalar variable
This commit is contained in:
parent
26a345334f
commit
a93a143d1e
@ -891,11 +891,11 @@ __kernel void m02500_comp (__global pw_t *pws, __global const kernel_rule_t *rul
|
|||||||
{
|
{
|
||||||
u32 t = to;
|
u32 t = to;
|
||||||
|
|
||||||
t = swap32 (t);
|
t = swap32_S (t);
|
||||||
|
|
||||||
t += nonce_error_correction;
|
t += nonce_error_correction;
|
||||||
|
|
||||||
t = swap32 (t);
|
t = swap32_S (t);
|
||||||
|
|
||||||
if (wpa->nonce_compare < 0)
|
if (wpa->nonce_compare < 0)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user