From de4cee4dd75c19b61cd87da20b34f7cd23244ef6 Mon Sep 17 00:00:00 2001 From: Love Hornquist Astrand Date: Tue, 1 Jun 2010 17:16:25 -0700 Subject: [PATCH] speed for rsa --- lib/hcrypto/rsa.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/hcrypto/rsa.c b/lib/hcrypto/rsa.c index 6a883454a..b4eb58ae5 100644 --- a/lib/hcrypto/rsa.c +++ b/lib/hcrypto/rsa.c @@ -48,6 +48,18 @@ * RSA is named by its inventors (Ron Rivest, Adi Shamir, and Leonard * Adleman) (published in 1977), patented expired in 21 September 2000. * + * + * Speed for RSA in seconds + * no key blinding + * 1000 iteration, + * same rsa key + * operation performed each eteration sign, verify, encrypt, decrypt on a random bit pattern + * + * gmp: 0.733615 + * tfm: 2.450173 (default in hcrypto) + * openssl: 4.046564 + * imath: 22.975163 + * * See the library functions here: @ref hcrypto_rsa */