From 93f1e7cf2e59e75c18680a3386846e831ad3c95c Mon Sep 17 00:00:00 2001 From: Jacob Barthelmeh Date: Fri, 10 Mar 2017 13:16:22 -0700 Subject: [PATCH] remove magic number in test case --- 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 501e0c7dd..ffbd6b552 100644 --- a/wolfcrypt/test/test.c +++ b/wolfcrypt/test/test.c @@ -10178,7 +10178,7 @@ static int ecc_sig_test(WC_RNG* rng, ecc_key* key) int ret; word32 sigSz; int size; - byte out[75]; + byte out[ECC_MAX_SIG_SIZE]; byte in[] = "Everyone gets Friday off."; word32 inLen = (word32)XSTRLEN((char*)in);