X-Git-Url: https://www.bearssl.org/gitweb//home/git/?p=BearSSL;a=blobdiff_plain;f=test%2Ftest_speed.c;h=81f3e9415c94f183a8323ccc80a3364dd8841af3;hp=0e885db800b62ac8f22378389ce300fc29e9f59e;hb=52a69fe3dee1c825ce2901043de3b4f600f36905;hpb=fd98320c82b02ded99cc8f01a7510366def3bbeb diff --git a/test/test_speed.c b/test/test_speed.c index 0e885db..81f3e94 100644 --- a/test/test_speed.c +++ b/test/test_speed.c @@ -1088,6 +1088,19 @@ test_speed_ec_c25519_m31(void) &br_ec_c25519_m31, &br_curve25519); } +static void +test_speed_ec_c25519_m62(void) +{ + const br_ec_impl *ec; + + ec = br_ec_c25519_m62_get(); + if (ec != NULL) { + test_speed_ec_inner("EC c25519_m62", ec, &br_curve25519); + } else { + printf("%-30s UNAVAILABLE\n", "EC c25519_m62"); + } +} + static void test_speed_ecdsa_inner(const char *name, const br_ec_impl *impl, const br_ec_curve_def *cd, @@ -1606,6 +1619,7 @@ static const struct { STU(ec_c25519_i31), STU(ec_c25519_m15), STU(ec_c25519_m31), + STU(ec_c25519_m62), STU(ecdsa_p256_m15), STU(ecdsa_p256_m31), STU(ecdsa_i15),