1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-23 08:38:09 +00:00

Fix -m 15400 output

This commit is contained in:
jsteube 2019-02-13 14:16:30 +01:00
parent dd293f7a93
commit e30df78b0d

View File

@ -194,8 +194,8 @@ int module_hash_encode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
byte_swap_32 (chacha20->iv[0]),
byte_swap_32 (chacha20->plain[0]),
byte_swap_32 (chacha20->plain[1]),
digest[1],
digest[0]);
byte_swap_32 (digest[1]),
byte_swap_32 (digest[0]));
return line_len;
}