mirror of https://github.com/wolfSSL/wolfssl.git
commit
adc548fc61
55
tests/api.c
55
tests/api.c
|
@ -2555,6 +2555,11 @@ done:
|
||||||
fdCloseSession(Task_self());
|
fdCloseSession(Task_self());
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(NO_MAIN_DRIVER) && defined(HAVE_ECC) && defined(FP_ECC) \
|
||||||
|
&& defined(HAVE_THREAD_LS)
|
||||||
|
wc_ecc_fp_free(); /* free per thread cache */
|
||||||
|
#endif
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -14301,6 +14306,10 @@ static int test_wc_ecc_make_key (void)
|
||||||
ret = WOLFSSL_FATAL_ERROR;
|
ret = WOLFSSL_FATAL_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef FP_ECC
|
||||||
|
wc_ecc_fp_free();
|
||||||
|
#endif
|
||||||
|
|
||||||
printf(resultFmt, ret == 0 ? passed : failed);
|
printf(resultFmt, ret == 0 ? passed : failed);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -14383,6 +14392,10 @@ static int test_wc_ecc_check_key (void)
|
||||||
}
|
}
|
||||||
wc_ecc_free(&key);
|
wc_ecc_free(&key);
|
||||||
|
|
||||||
|
#ifdef FP_ECC
|
||||||
|
wc_ecc_fp_free();
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -14560,6 +14573,11 @@ static int test_wc_ecc_signVerify_hash (void)
|
||||||
ret = WOLFSSL_FATAL_ERROR;
|
ret = WOLFSSL_FATAL_ERROR;
|
||||||
}
|
}
|
||||||
wc_ecc_free(&key);
|
wc_ecc_free(&key);
|
||||||
|
|
||||||
|
#ifdef FP_ECC
|
||||||
|
wc_ecc_fp_free();
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -14628,6 +14646,10 @@ static int test_wc_ecc_shared_secret (void)
|
||||||
wc_ecc_free(&key);
|
wc_ecc_free(&key);
|
||||||
wc_ecc_free(&pubKey);
|
wc_ecc_free(&pubKey);
|
||||||
|
|
||||||
|
#ifdef FP_ECC
|
||||||
|
wc_ecc_fp_free();
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -14689,6 +14711,10 @@ static int test_wc_ecc_export_x963 (void)
|
||||||
}
|
}
|
||||||
wc_ecc_free(&key);
|
wc_ecc_free(&key);
|
||||||
|
|
||||||
|
#ifdef FP_ECC
|
||||||
|
wc_ecc_fp_free();
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -14788,6 +14814,10 @@ static int test_wc_ecc_export_x963_ex (void)
|
||||||
}
|
}
|
||||||
wc_ecc_free(&key);
|
wc_ecc_free(&key);
|
||||||
|
|
||||||
|
#ifdef FP_ECC
|
||||||
|
wc_ecc_fp_free();
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -14852,6 +14882,10 @@ static int test_wc_ecc_import_x963 (void)
|
||||||
wc_ecc_free(&key);
|
wc_ecc_free(&key);
|
||||||
wc_ecc_free(&pubKey);
|
wc_ecc_free(&pubKey);
|
||||||
|
|
||||||
|
#ifdef FP_ECC
|
||||||
|
wc_ecc_fp_free();
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -14923,6 +14957,10 @@ static int ecc_import_private_key (void)
|
||||||
wc_ecc_free(&key);
|
wc_ecc_free(&key);
|
||||||
wc_ecc_free(&keyImp);
|
wc_ecc_free(&keyImp);
|
||||||
|
|
||||||
|
#ifdef FP_ECC
|
||||||
|
wc_ecc_fp_free();
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -14980,6 +15018,10 @@ static int test_wc_ecc_export_private_only (void)
|
||||||
}
|
}
|
||||||
wc_ecc_free(&key);
|
wc_ecc_free(&key);
|
||||||
|
|
||||||
|
#ifdef FP_ECC
|
||||||
|
wc_ecc_fp_free();
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -15790,6 +15832,10 @@ static int test_wc_ecc_shared_secret_ssh (void)
|
||||||
wc_ecc_free(&key);
|
wc_ecc_free(&key);
|
||||||
wc_ecc_free(&key2);
|
wc_ecc_free(&key2);
|
||||||
|
|
||||||
|
#ifdef FP_ECC
|
||||||
|
wc_ecc_fp_free();
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -15999,6 +16045,9 @@ static int test_wc_ecc_mulmod (void)
|
||||||
wc_ecc_free(&key2);
|
wc_ecc_free(&key2);
|
||||||
wc_ecc_free(&key3);
|
wc_ecc_free(&key3);
|
||||||
|
|
||||||
|
#ifdef FP_ECC
|
||||||
|
wc_ecc_fp_free();
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* HAVE_ECC && !WOLFSSL_ATECC508A */
|
#endif /* HAVE_ECC && !WOLFSSL_ATECC508A */
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -16054,6 +16103,9 @@ static int test_wc_ecc_is_valid_idx (void)
|
||||||
ret = WOLFSSL_FATAL_ERROR;
|
ret = WOLFSSL_FATAL_ERROR;
|
||||||
}
|
}
|
||||||
wc_ecc_free(&key);
|
wc_ecc_free(&key);
|
||||||
|
#ifdef FP_ECC
|
||||||
|
wc_ecc_fp_free();
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -24900,6 +24952,9 @@ static void test_wolfSSL_PEM_write_bio_PKCS7(void)
|
||||||
if (cert_buf)
|
if (cert_buf)
|
||||||
free(cert_buf);
|
free(cert_buf);
|
||||||
|
|
||||||
|
#ifdef FP_ECC
|
||||||
|
wc_ecc_fp_free();
|
||||||
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -17813,9 +17813,18 @@ static int ecc_decode_test(void)
|
||||||
|
|
||||||
/* SECP256R1 OID: 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07 */
|
/* SECP256R1 OID: 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07 */
|
||||||
|
|
||||||
static const byte good[] = { 0x30, 0x14, 0x30, 0x0b, 0x06, 0x00,
|
/* This is ecc_clikeypub_der_256. */
|
||||||
0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07,
|
static const byte good[] = {
|
||||||
0x03, 0x04, 0x00, 0x04, 0x01, 0x01 };
|
0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce,
|
||||||
|
0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d,
|
||||||
|
0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x55, 0xbf, 0xf4,
|
||||||
|
0x0f, 0x44, 0x50, 0x9a, 0x3d, 0xce, 0x9b, 0xb7, 0xf0, 0xc5,
|
||||||
|
0x4d, 0xf5, 0x70, 0x7b, 0xd4, 0xec, 0x24, 0x8e, 0x19, 0x80,
|
||||||
|
0xec, 0x5a, 0x4c, 0xa2, 0x24, 0x03, 0x62, 0x2c, 0x9b, 0xda,
|
||||||
|
0xef, 0xa2, 0x35, 0x12, 0x43, 0x84, 0x76, 0x16, 0xc6, 0x56,
|
||||||
|
0x95, 0x06, 0xcc, 0x01, 0xa9, 0xbd, 0xf6, 0x75, 0x1a, 0x42,
|
||||||
|
0xf7, 0xbd, 0xa9, 0xb2, 0x36, 0x22, 0x5f, 0xc7, 0x5d, 0x7f,
|
||||||
|
0xb4 };
|
||||||
static const byte badNoObjId[] = { 0x30, 0x08, 0x30, 0x06, 0x03, 0x04,
|
static const byte badNoObjId[] = { 0x30, 0x08, 0x30, 0x06, 0x03, 0x04,
|
||||||
0x00, 0x04, 0x01, 0x01 };
|
0x00, 0x04, 0x01, 0x01 };
|
||||||
static const byte badOneObjId[] = { 0x30, 0x0a, 0x30, 0x08, 0x06, 0x00,
|
static const byte badOneObjId[] = { 0x30, 0x0a, 0x30, 0x08, 0x06, 0x00,
|
||||||
|
|
Loading…
Reference in New Issue