Changed len from hardcoded value to sizeof oid

This commit is contained in:
Ethan Looney 2020-08-25 14:08:02 -06:00
parent c8d93d4d5e
commit 568184f53f

View File

@ -20774,8 +20774,8 @@ static int test_wc_ecc_get_curve_id_from_oid (void)
int ret = 0; int ret = 0;
#if defined(HAVE_ECC) && !defined(NO_ECC256) && !defined(HAVE_SELFTEST) && \ #if defined(HAVE_ECC) && !defined(NO_ECC256) && !defined(HAVE_SELFTEST) && \
!defined(HAVE_FIPS) !defined(HAVE_FIPS)
word32 len = 8;
const byte oid[] = {0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x07}; const byte oid[] = {0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x07};
word32 len = sizeof(oid);
printf(testingFmt, "wc_ecc_get_curve_id_from_oid()"); printf(testingFmt, "wc_ecc_get_curve_id_from_oid()");