summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/dh.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2002-03-06 00:23:27 +0000
committermarkus <markus@openbsd.org>2002-03-06 00:23:27 +0000
commitb89e752c86a72a3d867d2cb9f2aac6b057bbdada (patch)
treeff256b872b1aa4f307dd97c5b756e878041c724a /usr.bin/ssh/dh.c
parentcompat.c (diff)
downloadwireguard-openbsd-b89e752c86a72a3d867d2cb9f2aac6b057bbdada.tar.xz
wireguard-openbsd-b89e752c86a72a3d867d2cb9f2aac6b057bbdada.zip
undo
Diffstat (limited to 'usr.bin/ssh/dh.c')
-rw-r--r--usr.bin/ssh/dh.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/usr.bin/ssh/dh.c b/usr.bin/ssh/dh.c
index e691125e0a8..33187e02824 100644
--- a/usr.bin/ssh/dh.c
+++ b/usr.bin/ssh/dh.c
@@ -23,14 +23,13 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: dh.c,v 1.20 2002/03/06 00:20:54 markus Exp $");
+RCSID("$OpenBSD: dh.c,v 1.21 2002/03/06 00:23:27 markus Exp $");
#include "xmalloc.h"
#include <openssl/bn.h>
#include <openssl/dh.h>
#include <openssl/evp.h>
-#include <openssl/err.h>
#include "buffer.h"
#include "cipher.h"
@@ -208,10 +207,8 @@ dh_gen_key(DH *dh, int need)
if ((dh->priv_key = BN_new()) == NULL)
fatal("dh_gen_key: BN_new failed");
/* generate a 2*need bits random private exponent */
- if (!BN_rand(dh->priv_key, 2*need, 0, 0)) {
- int ecode = ERR_get_error();
- fatal("dh_gen_key: BN_rand failed: %s", ERR_error_string(ecode, NULL));
- }
+ if (!BN_rand(dh->priv_key, 2*need, 0, 0))
+ fatal("dh_gen_key: BN_rand failed");
if (DH_generate_key(dh) == 0)
fatal("DH_generate_key");
for (i = 0; i <= BN_num_bits(dh->priv_key); i++)