1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-24 07:28:10 +00:00

Merge pull request #1059 from philsmd/master

fix: we should initialize the aes_key in seven_zip_hook_func ()
This commit is contained in:
Jens Steube 2017-02-14 11:18:14 +01:00 committed by GitHub
commit 366ee1aab7

View File

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