summaryrefslogtreecommitdiff
path: root/src/usr.bin/openssl/dh.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/usr.bin/openssl/dh.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/usr.bin/openssl/dh.c b/src/usr.bin/openssl/dh.c
index ce10998090..4f82143511 100644
--- a/src/usr.bin/openssl/dh.c
+++ b/src/usr.bin/openssl/dh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: dh.c,v 1.2 2014/08/28 14:23:52 jsing Exp $ */ 1/* $OpenBSD: dh.c,v 1.3 2015/02/08 10:22:45 doug Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -211,15 +211,6 @@ bad:
211 } 211 }
212 if (text) { 212 if (text) {
213 DHparams_print(out, dh); 213 DHparams_print(out, dh);
214#ifdef undef
215 printf("p=");
216 BN_print(stdout, dh->p);
217 printf("\ng=");
218 BN_print(stdout, dh->g);
219 printf("\n");
220 if (dh->length != 0)
221 printf("recommended private length=%ld\n", dh->length);
222#endif
223 } 214 }
224 if (check) { 215 if (check) {
225 if (!DH_check(dh, &i)) { 216 if (!DH_check(dh, &i)) {