Deleted Added
sdiff udiff text old ( 57430 ) new ( 57464 )
full compact
1/*
2 *
3 * auth-rsa.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 01:46:52 1995 ylo
11 *
12 * RSA-based authentication. This code determines whether to admit a login
13 * based on RSA authentication. This file also contains functions to check
14 * validity of the host key.
15 *
16 */
17
18#include "includes.h"
19RCSID("$Id: auth-rsa.c,v 1.18 2000/02/11 10:59:11 markus Exp $");
20
21#include "rsa.h"
22#include "packet.h"
23#include "xmalloc.h"
24#include "ssh.h"
25#include "mpaux.h"
26#include "uidswap.h"
27#include "servconf.h"
28
29#include
30#include
31
32/* Flags that may be set in authorized_keys options. */
33extern int no_port_forwarding_flag;
34extern int no_agent_forwarding_flag;
35extern int no_x11_forwarding_flag;
36extern int no_pty_flag;
37extern char *forced_command;
38extern struct envstring *custom_environment;

--- 439 unchanged lines hidden ---