fix: we should initialize the aes_key in seven_zip_hook_func ()

pull/1059/head
philsmd 7 years ago
parent 63b7321be2
commit 0771a8e36a
No known key found for this signature in database
GPG Key ID: 4F25D016D9D6A8AF

@ -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;

Loading…
Cancel
Save