From 7f235f6303035d6397a2a4f058ce57fa9935c99f Mon Sep 17 00:00:00 2001 From: Koji Takeda Date: Tue, 30 Jun 2026 11:20:32 +0900 Subject: [PATCH] Fix wrong length on test message --- wolfcrypt/test/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/test/test.c b/wolfcrypt/test/test.c index 49deeaf0ce..bde11b1e36 100644 --- a/wolfcrypt/test/test.c +++ b/wolfcrypt/test/test.c @@ -43736,7 +43736,7 @@ WOLFSSL_TEST_SUBROUTINE wc_test_ret_t ecc_test_buffers(void) word32 idx = 0; #ifndef WC_NO_RNG /* pad our test message to 32 bytes so evenly divisible by AES_BLOCK_SZ */ - byte in[] = "Everyone gets Friday off. ecc p"; + byte in[] = "Everyone gets Friday off. ecc p."; word32 inLen = (word32)XSTRLEN((char*)in); byte out[256]; byte plain[256];