Remove unused aes->provider with OpenSSL aes class.

This commit is contained in:
Nathan Moinvaziri 2023-04-18 11:32:15 -07:00
parent 521eeae6a9
commit d7001c0156

View File

@ -325,7 +325,7 @@ int32_t mz_crypt_aes_set_decrypt_key(void *handle, const void *key, int32_t key_
int32_t mz_crypt_aes_set_iv(void *handle, const uint8_t *iv, int32_t iv_length) {
mz_crypt_aes *aes = (mz_crypt_aes *)handle;
int32_t result = 0;
if (!aes || !iv || iv_length != MZ_AES_BLOCK_SIZE || !aes->provider)
if (!aes || !iv || iv_length != MZ_AES_BLOCK_SIZE)
return MZ_PARAM_ERROR;
memcpy(aes->iv, iv, iv_length);
return MZ_OK;