diff options
author | Rich Salz <rsalz@openssl.org> | 2015-01-30 20:52:57 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2015-01-30 20:52:57 +0100 |
commit | 75d0ebef2aef7a2c77b27575b8da898e22f3ccd5 (patch) | |
tree | 9db0aaec4eeaad8510d1e24e384f99c46dff145e /apps/speed.c | |
parent | Dead code removal #if 0 engines (diff) | |
download | openssl-75d0ebef2aef7a2c77b27575b8da898e22f3ccd5.tar.xz openssl-75d0ebef2aef7a2c77b27575b8da898e22f3ccd5.zip |
Dead code clean: #if 0 removal in apps
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to '')
-rw-r--r-- | apps/speed.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/apps/speed.c b/apps/speed.c index 419dced807..8dc9de9ce6 100644 --- a/apps/speed.c +++ b/apps/speed.c @@ -874,12 +874,6 @@ int MAIN(int argc, char **argv) else #endif #ifndef OPENSSL_NO_RSA -# if 0 /* was: #ifdef RSAref */ - if (strcmp(*argv, "rsaref") == 0) { - RSA_set_default_openssl_method(RSA_PKCS1_RSAref()); - j--; - } else -# endif # ifndef RSA_NULL if (strcmp(*argv, "openssl") == 0) { RSA_set_default_method(RSA_PKCS1_SSLeay()); @@ -1273,16 +1267,6 @@ int MAIN(int argc, char **argv) i); goto end; } -# if 0 - else { - BIO_printf(bio_err, - mr ? "+RK:%d:" - : "Loaded RSA key, %d bit modulus and e= 0x", - BN_num_bits(rsa_key[i]->n)); - BN_print(bio_err, rsa_key[i]->e); - BIO_printf(bio_err, "\n"); - } -# endif } #endif |