mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 12:59:44 -07:00
test functionality restored.
can be merged
This commit is contained in:
parent
7d60dcab7d
commit
02e656c5ad
1 changed files with 3 additions and 4 deletions
|
@ -36,10 +36,6 @@ int ExecuteCryptoTests(bool verbose) {
|
|||
int res;
|
||||
bool TestFail = false;
|
||||
|
||||
res = ecdsa_nist_test(verbose);
|
||||
if (res) TestFail = true;
|
||||
return 0;
|
||||
|
||||
res = mbedtls_mpi_self_test(verbose);
|
||||
if (res) TestFail = true;
|
||||
|
||||
|
@ -73,6 +69,9 @@ return 0;
|
|||
res = mbedtls_cmac_self_test(verbose);
|
||||
if (res) TestFail = true;
|
||||
|
||||
res = ecdsa_nist_test(verbose);
|
||||
if (res) TestFail = true;
|
||||
|
||||
res = mbedtls_ecp_self_test(verbose);
|
||||
if (res) TestFail = true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue