summaryrefslogtreecommitdiff
path: root/kexgex.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-04-05 23:26:32 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-04-05 23:26:32 +0000
commita3700050ec681277bcdf76a02b0c2e304ff317c7 (patch)
tree6cd727ebf611f03b345783cb9d6d8d04e8f483bf /kexgex.c
parenta6c20148f58e34a902512ffe5eee3279acaaa26b (diff)
- markus@cvs.openbsd.org 2001/04/05 10:42:57
[auth-chall.c authfd.c channels.c clientloop.c kex.c kexgex.c key.c mac.c packet.c serverloop.c sftp-client.c sftp-client.h sftp-glob.c sftp-glob.h sftp-int.c sftp-server.c sftp.c ssh-keygen.c sshconnect.c sshconnect2.c sshd.c] fix whitespace: unexpand + trailing spaces.
Diffstat (limited to 'kexgex.c')
-rw-r--r--kexgex.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/kexgex.c b/kexgex.c
index d42dd55b3..44f2f5c95 100644
--- a/kexgex.c
+++ b/kexgex.c
@@ -24,7 +24,7 @@
24 */ 24 */
25 25
26#include "includes.h" 26#include "includes.h"
27RCSID("$OpenBSD: kexgex.c,v 1.4 2001/04/04 22:04:35 markus Exp $"); 27RCSID("$OpenBSD: kexgex.c,v 1.5 2001/04/05 10:42:50 markus Exp $");
28 28
29#include <openssl/bn.h> 29#include <openssl/bn.h>
30 30
@@ -69,7 +69,7 @@ kexgex_hash(
69 buffer_append(&b, skexinit, skexinitlen); 69 buffer_append(&b, skexinit, skexinitlen);
70 70
71 buffer_put_string(&b, serverhostkeyblob, sbloblen); 71 buffer_put_string(&b, serverhostkeyblob, sbloblen);
72 if (min == -1 || max == -1) 72 if (min == -1 || max == -1)
73 buffer_put_int(&b, wantbits); 73 buffer_put_int(&b, wantbits);
74 else { 74 else {
75 buffer_put_int(&b, min); 75 buffer_put_int(&b, min);
@@ -205,7 +205,7 @@ kexgex_client(Kex *kex)
205 kbuf = xmalloc(klen); 205 kbuf = xmalloc(klen);
206 kout = DH_compute_key(kbuf, dh_server_pub, dh); 206 kout = DH_compute_key(kbuf, dh_server_pub, dh);
207#ifdef DEBUG_KEXDH 207#ifdef DEBUG_KEXDH
208 dump_digest("shared secret", kbuf, kout); 208 dump_digest("shared secret", kbuf, kout);
209#endif 209#endif
210 shared_secret = BN_new(); 210 shared_secret = BN_new();
211 BN_bin2bn(kbuf, kout, shared_secret); 211 BN_bin2bn(kbuf, kout, shared_secret);
@@ -339,7 +339,7 @@ kexgex_server(Kex *kex)
339 kbuf = xmalloc(klen); 339 kbuf = xmalloc(klen);
340 kout = DH_compute_key(kbuf, dh_client_pub, dh); 340 kout = DH_compute_key(kbuf, dh_client_pub, dh);
341#ifdef DEBUG_KEXDH 341#ifdef DEBUG_KEXDH
342 dump_digest("shared secret", kbuf, kout); 342 dump_digest("shared secret", kbuf, kout);
343#endif 343#endif
344 shared_secret = BN_new(); 344 shared_secret = BN_new();
345 BN_bin2bn(kbuf, kout, shared_secret); 345 BN_bin2bn(kbuf, kout, shared_secret);