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

minor: use correct buffer size for AES decryption

This commit is contained in:
philsmd 2020-09-26 16:13:52 +02:00
parent 3dd89bc63c
commit 5c615ad7bb
No known key found for this signature in database
GPG Key ID: 4F25D016D9D6A8AF
2 changed files with 2 additions and 2 deletions

View File

@ -479,7 +479,7 @@ KERNEL_FQ void m16300_comp (KERN_ATTR_TMPS_ESALT (pbkdf2_sha256_tmp_t, ethereum_
* aes init
*/
#define KEYLEN 60
#define KEYLEN 44
u32 ks[KEYLEN];

View File

@ -306,7 +306,7 @@ KERNEL_FQ void m23300_comp (KERN_ATTR_TMPS_ESALT (iwork_tmp_t, iwork_t))
* AES part
*/
u32 ukey[8];
u32 ukey[4];
ukey[0] = tmps[gid].out[0];
ukey[1] = tmps[gid].out[1];