Deleted Added
full compact
authfile.c (57430) authfile.c (57464)
1/*
2 *
3 * authfile.c
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Mon Mar 27 03:52:05 1995 ylo
11 *
12 * This file contains functions for reading and writing identity files, and
13 * for reading the passphrase from the user.
14 *
1/*
2 *
3 * authfile.c
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Mon Mar 27 03:52:05 1995 ylo
11 *
12 * This file contains functions for reading and writing identity files, and
13 * for reading the passphrase from the user.
14 *
15 * $FreeBSD: head/crypto/openssh/authfile.c 57464 2000-02-25 01:53:12Z green $
15 */
16
17#include "includes.h"
18RCSID("$Id: authfile.c,v 1.11 1999/12/06 19:11:15 deraadt Exp $");
19
16 */
17
18#include "includes.h"
19RCSID("$Id: authfile.c,v 1.11 1999/12/06 19:11:15 deraadt Exp $");
20
20#include
21#include <openssl/bn.h>
21#include "xmalloc.h"
22#include "buffer.h"
23#include "bufaux.h"
24#include "cipher.h"
25#include "ssh.h"
26
27/* Version identification string for identity files. */
28#define AUTHFILE_ID_STRING "SSH PRIVATE KEY FILE FORMAT 1.1\n"

--- 317 unchanged lines hidden ---
22#include "xmalloc.h"
23#include "buffer.h"
24#include "bufaux.h"
25#include "cipher.h"
26#include "ssh.h"
27
28/* Version identification string for identity files. */
29#define AUTHFILE_ID_STRING "SSH PRIVATE KEY FILE FORMAT 1.1\n"

--- 317 unchanged lines hidden ---