summaryrefslogtreecommitdiff
path: root/kex.c
diff options
context:
space:
mode:
Diffstat (limited to 'kex.c')
-rw-r--r--kex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kex.c b/kex.c
index 49d0fc8fd..d114ee3e0 100644
--- a/kex.c
+++ b/kex.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: kex.c,v 1.97 2014/01/25 20:35:37 markus Exp $ */ 1/* $OpenBSD: kex.c,v 1.98 2014/02/02 03:44:31 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
4 * 4 *
@@ -682,8 +682,8 @@ derive_ssh1_session_id(BIGNUM *host_modulus, BIGNUM *server_modulus,
682 fatal("%s: ssh_digest_final failed", __func__); 682 fatal("%s: ssh_digest_final failed", __func__);
683 memcpy(id, obuf, ssh_digest_bytes(SSH_DIGEST_MD5)); 683 memcpy(id, obuf, ssh_digest_bytes(SSH_DIGEST_MD5));
684 684
685 memset(nbuf, 0, sizeof(nbuf)); 685 explicit_bzero(nbuf, sizeof(nbuf));
686 memset(obuf, 0, sizeof(obuf)); 686 explicit_bzero(obuf, sizeof(obuf));
687} 687}
688 688
689#if defined(DEBUG_KEX) || defined(DEBUG_KEXDH) || defined(DEBUG_KEXECDH) 689#if defined(DEBUG_KEX) || defined(DEBUG_KEXDH) || defined(DEBUG_KEXECDH)