Deleted Added
full compact
sshconnect.c (57432) sshconnect.c (57464)
1/*
2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5 * Created: Sat Mar 18 22:15:47 1995 ylo
6 * Code to connect to a remote host, and to perform the client side of the
7 * login (authentication) dialog.
8 *
1/*
2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5 * Created: Sat Mar 18 22:15:47 1995 ylo
6 * Code to connect to a remote host, and to perform the client side of the
7 * login (authentication) dialog.
8 *
9 * $FreeBSD: head/crypto/openssh/sshconnect.c 57432 2000-02-24 15:29:42Z markm $
9 * $FreeBSD: head/crypto/openssh/sshconnect.c 57464 2000-02-25 01:53:12Z green $
10 */
11
12#include "includes.h"
13RCSID("$OpenBSD: sshconnect.c,v 1.56 2000/02/18 08:50:33 markus Exp $");
14
10 */
11
12#include "includes.h"
13RCSID("$OpenBSD: sshconnect.c,v 1.56 2000/02/18 08:50:33 markus Exp $");
14
15#include
15#include <openssl/bn.h>
16#include "xmalloc.h"
17#include "rsa.h"
18#include "ssh.h"
19#include "packet.h"
20#include "authfd.h"
21#include "cipher.h"
22#include "mpaux.h"
23#include "uidswap.h"
24#include "compat.h"
25#include "readconf.h"
26#include "fingerprint.h"
27
16#include "xmalloc.h"
17#include "rsa.h"
18#include "ssh.h"
19#include "packet.h"
20#include "authfd.h"
21#include "cipher.h"
22#include "mpaux.h"
23#include "uidswap.h"
24#include "compat.h"
25#include "readconf.h"
26#include "fingerprint.h"
27
28#include
28#include <openssl/md5.h>
29
30/* Session id for the current session. */
31unsigned char session_id[16];
32
33/* authentications supported by server */
34unsigned int supported_authentications;
35
36extern Options options;

--- 1607 unchanged lines hidden ---
29
30/* Session id for the current session. */
31unsigned char session_id[16];
32
33/* authentications supported by server */
34unsigned int supported_authentications;
35
36extern Options options;

--- 1607 unchanged lines hidden ---