Skip to content

Commit

Permalink
Merge pull request #8500 from SparkiDev/evp_aes_gcm_test_fix
Browse files Browse the repository at this point in the history
test_wolfssl_EVP_aes_gcm: fix for mem fail testing
  • Loading branch information
dgarske authored Feb 25, 2025
2 parents bac6771 + ac1f25d commit f2c5b4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/api.c
Original file line number Diff line number Diff line change
Expand Up @@ -77197,7 +77197,7 @@ static int test_wolfssl_EVP_aes_gcm(void)
ciphertxtSz += len;
ExpectIntEQ(1, EVP_CIPHER_CTX_ctrl(&en[i], EVP_CTRL_GCM_GET_TAG,
AES_BLOCK_SIZE, tag));
ExpectIntEQ(wolfSSL_EVP_CIPHER_CTX_cleanup(&en[i]), 1);
wolfSSL_EVP_CIPHER_CTX_cleanup(&en[i]);

EVP_CIPHER_CTX_init(&de[i]);
if (i == 0) {
Expand Down Expand Up @@ -77282,7 +77282,7 @@ static int test_wolfssl_EVP_aes_gcm(void)
ExpectIntEQ(0, EVP_DecryptFinal_ex(&de[i], decryptedtxt, &len));
ExpectIntEQ(0, len);

ExpectIntEQ(wolfSSL_EVP_CIPHER_CTX_cleanup(&de[i]), 1);
wolfSSL_EVP_CIPHER_CTX_cleanup(&de[i]);
}
#endif /* OPENSSL_EXTRA && !NO_AES && HAVE_AESGCM */
return EXPECT_RESULT();
Expand Down

0 comments on commit f2c5b4e

Please sign in to comment.