Merge pull request #3551 from douzzer/fix-unit-test-EVP-arc4-32-bit

32 bit targets vs test_wolfSSL_EVP_X_STATE_LEN()
pull/3559/head
Sean Parkinson 2020-12-11 16:46:10 +10:00 committed by GitHub
commit 8b2bd1277a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -34312,7 +34312,7 @@ static void test_wolfSSL_EVP_X_STATE_LEN(void)
wolfSSL_EVP_CIPHER_CTX_init(ctx);
AssertIntEQ(EVP_CipherInit(ctx, init, key, iv, 1), WOLFSSL_SUCCESS);
AssertIntEQ(wolfSSL_EVP_X_STATE_LEN(ctx), 272);
AssertIntEQ(wolfSSL_EVP_X_STATE_LEN(ctx), sizeof(Arc4));
EVP_CIPHER_CTX_free(ctx);