diff options
author | 2002-03-06 00:23:27 +0000 | |
---|---|---|
committer | 2002-03-06 00:23:27 +0000 | |
commit | b89e752c86a72a3d867d2cb9f2aac6b057bbdada (patch) | |
tree | ff256b872b1aa4f307dd97c5b756e878041c724a /usr.bin/ssh/dh.c | |
parent | compat.c (diff) | |
download | wireguard-openbsd-b89e752c86a72a3d867d2cb9f2aac6b057bbdada.tar.xz wireguard-openbsd-b89e752c86a72a3d867d2cb9f2aac6b057bbdada.zip |
undo
Diffstat (limited to 'usr.bin/ssh/dh.c')
-rw-r--r-- | usr.bin/ssh/dh.c | 9 |
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++) |