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

Fixing bad vconv32_t usage

This commit is contained in:
bacqube2 2023-02-14 10:21:16 +01:00
parent a3b4162e5f
commit 0e7fdd3c55

View File

@ -72,7 +72,7 @@ DECLSPEC u32 blake2s_rot08_S (const u32 a)
vconv32_t out; 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; return out.v32;
@ -84,7 +84,7 @@ DECLSPEC u32 blake2s_rot08_S (const u32 a)
vconv32_t out; 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; return out.v32;