X-Git-Url: https://bearssl.org/gitweb//home/git/?p=BearSSL;a=blobdiff_plain;f=test%2Ftest_speed.c;h=a09aa0493b39db12f23c628135be4df051371e93;hp=17c869f5ebd12aa6948871bede4a0953e039b230;hb=042986b989521f0ae1e2fe3819c72f2fabcb70a6;hpb=5db2d48b128326704cd33aff56c8b46e463f3bf6 diff --git a/test/test_speed.c b/test/test_speed.c index 17c869f..a09aa04 100644 --- a/test/test_speed.c +++ b/test/test_speed.c @@ -666,6 +666,21 @@ test_speed_rsa_i32(void) &br_rsa_i32_public, &br_rsa_i32_private); } +static void +test_speed_rsa_i62(void) +{ + br_rsa_public pub; + br_rsa_private priv; + + pub = br_rsa_i62_public_get(); + priv = br_rsa_i62_private_get(); + if (pub) { + test_speed_rsa_inner("RSA i62", pub, priv); + } else { + printf("%-30s UNAVAILABLE\n", "RSA i62"); + } +} + static void test_speed_ec_inner_1(const char *name, const br_ec_impl *impl, const br_ec_curve_def *cd) @@ -1279,6 +1294,7 @@ static const struct { STU(rsa_i15), STU(rsa_i31), STU(rsa_i32), + STU(rsa_i62), STU(ec_prime_i15), STU(ec_prime_i31), STU(ec_p256_m15),