Deleted Added
sdiff udiff text old ( 57430 ) new ( 57464 )
full compact
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 */
16
17#include "includes.h"
18RCSID("$Id: authfile.c,v 1.11 1999/12/06 19:11:15 deraadt Exp $");
19
20#include
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 ---