mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
fix issues around crypt hash destruction
This commit is contained in:
parent
35ff149086
commit
8fb80888f3
@ -182,9 +182,11 @@ int32_t mz_crypt_pbkdf2(uint8_t *password, int32_t password_length, uint8_t *sa
|
||||
key[k++] = ux[j++];
|
||||
}
|
||||
|
||||
// hmac3 uses the same provider as hmac2,
|
||||
// so it must be deleted before the context is destroyed.
|
||||
mz_crypt_hmac_delete(&hmac3);
|
||||
mz_crypt_hmac_delete(&hmac1);
|
||||
mz_crypt_hmac_delete(&hmac2);
|
||||
mz_crypt_hmac_delete(&hmac3);
|
||||
|
||||
return err;
|
||||
}
|
||||
|
@ -511,6 +511,12 @@ int32_t mz_crypt_hmac_copy(void *src_handle, void *target_handle)
|
||||
int32_t result = 0;
|
||||
int32_t err = MZ_OK;
|
||||
|
||||
if (target->hash)
|
||||
{
|
||||
CryptDestroyHash(target->hash);
|
||||
target->hash = NULL;
|
||||
}
|
||||
|
||||
result = CryptDuplicateHash(source->hash, NULL, 0, &target->hash);
|
||||
|
||||
if (!result)
|
||||
|
Loading…
x
Reference in New Issue
Block a user