mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-05 14:59:37 +00:00
Fixing bad vconv32_t usage
This commit is contained in:
parent
a3b4162e5f
commit
0e7fdd3c55
@ -72,7 +72,7 @@ DECLSPEC u32 blake2s_rot08_S (const u32 a)
|
||||
|
||||
vconv32_t out;
|
||||
|
||||
out.v32 = hc_byte_perm_S (in.v32.b, in.v32.a, 0x0321);
|
||||
out.v32 = hc_byte_perm_S (in.v32, in.v32, 0x0321);
|
||||
|
||||
return out.v32;
|
||||
|
||||
@ -84,7 +84,7 @@ DECLSPEC u32 blake2s_rot08_S (const u32 a)
|
||||
|
||||
vconv32_t out;
|
||||
|
||||
out.v32 = hc_byte_perm_S (in.v32.b, in.v32.a, 0x00030201);
|
||||
out.v32 = hc_byte_perm_S (in.v32, in.v32, 0x00030201);
|
||||
|
||||
return out.v32;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user