1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 08:08:10 +00:00

Use scalar swap32() version for scalar variable

This commit is contained in:
Jens Steube 2017-04-17 17:46:27 +02:00
parent 26a345334f
commit a93a143d1e

View File

@ -891,11 +891,11 @@ __kernel void m02500_comp (__global pw_t *pws, __global const kernel_rule_t *rul
{
u32 t = to;
t = swap32 (t);
t = swap32_S (t);
t += nonce_error_correction;
t = swap32 (t);
t = swap32_S (t);
if (wpa->nonce_compare < 0)
{