From: Nikos Mavrogiannopoulos Date: Fri, 20 Jun 2014 12:37:13 +0000 (+0200) Subject: Turn RSA blinding off in openssl RSA benchmark. X-Git-Tag: nettle_3.1rc1~177 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4fd3dd3e3648d54cac1d8a37b4e8ccef76f3502d;p=thirdparty%2Fnettle.git Turn RSA blinding off in openssl RSA benchmark. That allows direct comparison with hogweed's RSA results. --- diff --git a/examples/hogweed-benchmark.c b/examples/hogweed-benchmark.c index 05372ab4..311fa2d6 100644 --- a/examples/hogweed-benchmark.c +++ b/examples/hogweed-benchmark.c @@ -521,6 +521,7 @@ bench_openssl_rsa_init (unsigned size) ctx->ref = xalloc (RSA_size (ctx->key)); ctx->signature = xalloc (RSA_size (ctx->key)); ctx->digest = hash_string (&nettle_sha1, 3, "foo"); + RSA_blinding_off(ctx->key); if (! RSA_sign (NID_sha1, ctx->digest, SHA1_DIGEST_SIZE, ctx->ref, &ctx->siglen, ctx->key))