Fixed wrong usage of create function for sha224 test.

This commit is contained in:
Nathan Moinvaziri 2023-03-31 18:19:18 -07:00
parent f9203e7a55
commit 3394c29b52

View File

@ -266,7 +266,8 @@ TEST(crypt, hmac_sha1_short_password) {
char computed_hash[256];
uint8_t hash1[MZ_HASH_SHA1_SIZE];
mz_crypt_hmac_create(&hmac);
hmac = mz_crypt_hmac_create();
ASSERT_NE(hmac, nullptr);
mz_crypt_hmac_set_algorithm(hmac, MZ_HASH_SHA1);
/* Key length is 1, only first char from key should used for this test */
mz_crypt_hmac_init(hmac, key, 1);