summaryrefslogtreecommitdiffstats
path: root/kex.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-05-13 16:31:48 +1000
committerDarren Tucker <dtucker@zip.com.au>2004-05-13 16:31:48 +1000
commitb42714e28bcb22c5b52b0266813165cf5e7e9ccb (patch)
tree17f132e9032bf9ab7851877bcd83d92a24d2d133 /kex.c
parente14e005f41cf541017ab4e285f0b2ec23a21b7ff (diff)
- djm@cvs.openbsd.org 2004/05/09 01:26:48
[kex.c] don't overwrite what we are trying to compute
Diffstat (limited to 'kex.c')
-rw-r--r--kex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kex.c b/kex.c
index 30dd58a7..fa5de7ed 100644
--- a/kex.c
+++ b/kex.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: kex.c,v 1.57 2004/05/09 01:19:27 djm Exp $");
+RCSID("$OpenBSD: kex.c,v 1.58 2004/05/09 01:26:48 djm Exp $");
#include <openssl/crypto.h>
@@ -504,7 +504,7 @@ derive_ssh1_session_id(BIGNUM *host_modulus, BIGNUM *server_modulus,
EVP_DigestUpdate(&md, cookie, 8);
- EVP_DigestFinal(&md, id, NULL);
+ EVP_DigestFinal(&md, obuf, NULL);
memcpy(id, obuf, 16);
memset(nbuf, 0, sizeof(nbuf));