Deleted Added
full compact
ssh-agent.c (57430) ssh-agent.c (57464)
1/* $OpenBSD: ssh-agent.c,v 1.25 2000/01/02 21:51:03 markus Exp $ */
2
3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
7 * Created: Wed Mar 29 03:46:59 1995 ylo
8 * The authentication agent program.
1/* $OpenBSD: ssh-agent.c,v 1.25 2000/01/02 21:51:03 markus Exp $ */
2
3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
7 * Created: Wed Mar 29 03:46:59 1995 ylo
8 * The authentication agent program.
9 *
10 * $FreeBSD: head/crypto/openssh/ssh-agent.c 57464 2000-02-25 01:53:12Z green $
9 */
10
11#include "includes.h"
12RCSID("$OpenBSD: ssh-agent.c,v 1.25 2000/01/02 21:51:03 markus Exp $");
13
14#include "ssh.h"
15#include "rsa.h"
16#include "authfd.h"
17#include "buffer.h"
18#include "bufaux.h"
19#include "xmalloc.h"
20#include "packet.h"
21#include "getput.h"
22#include "mpaux.h"
23
11 */
12
13#include "includes.h"
14RCSID("$OpenBSD: ssh-agent.c,v 1.25 2000/01/02 21:51:03 markus Exp $");
15
16#include "ssh.h"
17#include "rsa.h"
18#include "authfd.h"
19#include "buffer.h"
20#include "bufaux.h"
21#include "xmalloc.h"
22#include "packet.h"
23#include "getput.h"
24#include "mpaux.h"
25
24#include
26#include <openssl/md5.h>
25
26typedef struct {
27 int fd;
28 enum {
29 AUTH_UNUSED, AUTH_SOCKET, AUTH_CONNECTION
30 } type;
31 Buffer input;
32 Buffer output;

--- 621 unchanged lines hidden ---
27
28typedef struct {
29 int fd;
30 enum {
31 AUTH_UNUSED, AUTH_SOCKET, AUTH_CONNECTION
32 } type;
33 Buffer input;
34 Buffer output;

--- 621 unchanged lines hidden ---