aboutsummaryrefslogtreecommitdiff
path: root/crypto/srp/srp_lib.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2015-02-03 11:20:56 -0500
committerRich Salz <rsalz@openssl.org>2015-02-03 11:20:56 -0500
commitdfb56425b68314b2b57e17c82c1df42e7a015132 (patch)
tree0f727a8bfd00e1ca5bccc77cc0f25ef27f911f0f /crypto/srp/srp_lib.c
parent156a872233b56558c72561789b8f33ff71a88fa7 (diff)
downloadopenssl-dfb56425b68314b2b57e17c82c1df42e7a015132.zip
openssl-dfb56425b68314b2b57e17c82c1df42e7a015132.tar.gz
openssl-dfb56425b68314b2b57e17c82c1df42e7a015132.tar.bz2
Dead code: crypto/dh,modes,pkcs12,ripemd,rsa,srp
And an uncompiled C++ test file. Also remove srp_lcl.h, with help from Richard. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/srp/srp_lib.c')
-rw-r--r--crypto/srp/srp_lib.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/crypto/srp/srp_lib.c b/crypto/srp/srp_lib.c
index 6997a28..9e1de74 100644
--- a/crypto/srp/srp_lib.c
+++ b/crypto/srp/srp_lib.c
@@ -59,7 +59,7 @@
*/
#ifndef OPENSSL_NO_SRP
# include "cryptlib.h"
-# include "srp_lcl.h"
+# include <openssl/sha.h>
# include <openssl/srp.h>
# include <openssl/evp.h>
# include "internal/bn_srp.h"
@@ -317,9 +317,6 @@ char *SRP_check_known_gN_param(BIGNUM *g, BIGNUM *N)
if ((g == NULL) || (N == NULL))
return 0;
- srp_bn_print(g);
- srp_bn_print(N);
-
for (i = 0; i < KNOWN_GN_NUMBER; i++) {
if (BN_cmp(knowngN[i].g, g) == 0 && BN_cmp(knowngN[i].N, N) == 0)
return knowngN[i].id;