1
mirror of https://github.com/hashcat/hashcat synced 2024-12-01 20:18:12 +01:00

fix: we should initialize the aes_key in seven_zip_hook_func ()

This commit is contained in:
philsmd 2017-02-14 11:10:33 +01:00
parent 63b7321be2
commit 0771a8e36a
No known key found for this signature in database
GPG Key ID: 4F25D016D9D6A8AF

View File

@ -14124,7 +14124,7 @@ void seven_zip_hook_func (hc_device_param_t *device_param, hashes_t *hashes, con
// init AES
AES_KEY aes_key;
AES_KEY aes_key = { 0 };
AES_set_decrypt_key (ukey, 256, &aes_key);
AES_KEY aes_key_copied;