]> andersk Git - openssh.git/blame - ssh.h
- More large OpenBSD CVS updates:
[openssh.git] / ssh.h
CommitLineData
8efc0c15 1/*
5260325f 2 *
3 * ssh.h
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: Fri Mar 17 17:09:37 1995 ylo
11 *
12 * Generic header file for ssh.
13 *
14 */
8efc0c15 15
16/* RCSID("$Id$"); */
17
18#ifndef SSH_H
19#define SSH_H
20
4cca272e 21#include <netinet/in.h> /* For struct sockaddr_in */
22#include <pwd.h> /* For struct pw */
6a17f9c2 23#include <stdarg.h> /* For va_list */
48e671d5 24#include <sys/socket.h> /* For struct sockaddr_storage */
25#include "fake-socket.h" /* For struct sockaddr_storage */
eef6f7e9 26#ifdef HAVE_SYS_SELECT_H
27# include <sys/select.h>
28#endif
8efc0c15 29#include "rsa.h"
30#include "cipher.h"
31
aa3378df 32/*
33 * The default cipher used if IDEA is not supported by the remote host. It is
34 * recommended that this be one of the mandatory ciphers (DES, 3DES), though
35 * that is not required.
36 */
8efc0c15 37#define SSH_FALLBACK_CIPHER SSH_CIPHER_3DES
38
39/* Cipher used for encrypting authentication files. */
40#define SSH_AUTHFILE_CIPHER SSH_CIPHER_3DES
41
42/* Default port number. */
43#define SSH_DEFAULT_PORT 22
44
45/* Maximum number of TCP/IP ports forwarded per direction. */
46#define SSH_MAX_FORWARDS_PER_DIRECTION 100
47
aa3378df 48/*
49 * Maximum number of RSA authentication identity files that can be specified
50 * in configuration files or on the command line.
51 */
8efc0c15 52#define SSH_MAX_IDENTITY_FILES 100
53
aa3378df 54/*
55 * Major protocol version. Different version indicates major incompatiblity
56 * that prevents communication.
57 */
8efc0c15 58#define PROTOCOL_MAJOR 1
59
aa3378df 60/*
61 * Minor protocol version. Different version indicates minor incompatibility
62 * that does not prevent interoperation.
63 */
8efc0c15 64#define PROTOCOL_MINOR 5
65
aa3378df 66/*
67 * Name for the service. The port named by this service overrides the
68 * default port if present.
69 */
8efc0c15 70#define SSH_SERVICE_NAME "ssh"
71
72#ifndef ETCDIR
73#define ETCDIR "/etc"
74#endif /* ETCDIR */
75
5260325f 76#ifndef PIDDIR
8efc0c15 77#define PIDDIR "/var/run"
5260325f 78#endif /* PIDDIR */
8efc0c15 79
aa3378df 80/*
81 * System-wide file containing host keys of known hosts. This file should be
82 * world-readable.
83 */
8efc0c15 84#define SSH_SYSTEM_HOSTFILE ETCDIR "/ssh_known_hosts"
85
aa3378df 86/*
87 * Of these, ssh_host_key must be readable only by root, whereas ssh_config
88 * should be world-readable.
89 */
8efc0c15 90#define HOST_KEY_FILE ETCDIR "/ssh_host_key"
91#define SERVER_CONFIG_FILE ETCDIR "/sshd_config"
92#define HOST_CONFIG_FILE ETCDIR "/ssh_config"
e78a59f5 93#define DSA_KEY_FILE ETCDIR "/ssh_dsa_key"
8efc0c15 94
e1a9c08d 95#ifndef SSH_PROGRAM
5260325f 96#define SSH_PROGRAM "/usr/bin/ssh"
e1a9c08d 97#endif /* SSH_PROGRAM */
98
99#ifndef LOGIN_PROGRAM
5260325f 100#define LOGIN_PROGRAM "/usr/bin/login"
e1a9c08d 101#endif /* LOGIN_PROGRAM */
8efc0c15 102
d4f11b59 103#ifndef ASKPASS_PROGRAM
5260325f 104#define ASKPASS_PROGRAM "/usr/lib/ssh/ssh-askpass"
d4f11b59 105#endif /* ASKPASS_PROGRAM */
106
aa3378df 107/*
108 * The process id of the daemon listening for connections is saved here to
109 * make it easier to kill the correct daemon when necessary.
110 */
f1bcacf9 111#define SSH_DAEMON_PID_FILE PIDDIR "/sshd.pid"
8efc0c15 112
aa3378df 113/*
114 * The directory in user\'s home directory in which the files reside. The
115 * directory should be world-readable (though not all files are).
116 */
8efc0c15 117#define SSH_USER_DIR ".ssh"
118
aa3378df 119/*
120 * Per-user file containing host keys of known hosts. This file need not be
121 * readable by anyone except the user him/herself, though this does not
122 * contain anything particularly secret.
123 */
8efc0c15 124#define SSH_USER_HOSTFILE "~/.ssh/known_hosts"
125
aa3378df 126/*
127 * Name of the default file containing client-side authentication key. This
128 * file should only be readable by the user him/herself.
129 */
8efc0c15 130#define SSH_CLIENT_IDENTITY ".ssh/identity"
131
aa3378df 132/*
133 * Configuration file in user\'s home directory. This file need not be
134 * readable by anyone but the user him/herself, but does not contain anything
135 * particularly secret. If the user\'s home directory resides on an NFS
136 * volume where root is mapped to nobody, this may need to be world-readable.
137 */
8efc0c15 138#define SSH_USER_CONFFILE ".ssh/config"
139
aa3378df 140/*
141 * File containing a list of those rsa keys that permit logging in as this
142 * user. This file need not be readable by anyone but the user him/herself,
143 * but does not contain anything particularly secret. If the user\'s home
144 * directory resides on an NFS volume where root is mapped to nobody, this
145 * may need to be world-readable. (This file is read by the daemon which is
146 * running as root.)
147 */
8efc0c15 148#define SSH_USER_PERMITTED_KEYS ".ssh/authorized_keys"
149
aa3378df 150/*
151 * Per-user and system-wide ssh "rc" files. These files are executed with
152 * /bin/sh before starting the shell or command if they exist. They will be
153 * passed "proto cookie" as arguments if X11 forwarding with spoofing is in
154 * use. xauth will be run if neither of these exists.
155 */
8efc0c15 156#define SSH_USER_RC ".ssh/rc"
157#define SSH_SYSTEM_RC ETCDIR "/sshrc"
158
aa3378df 159/*
160 * Ssh-only version of /etc/hosts.equiv. Additionally, the daemon may use
161 * ~/.rhosts and /etc/hosts.equiv if rhosts authentication is enabled.
162 */
8efc0c15 163#define SSH_HOSTS_EQUIV ETCDIR "/shosts.equiv"
164
aa3378df 165/*
166 * Name of the environment variable containing the pathname of the
167 * authentication socket.
168 */
8efc0c15 169#define SSH_AUTHSOCKET_ENV_NAME "SSH_AUTH_SOCK"
170
aa3378df 171/*
172 * Name of the environment variable containing the pathname of the
173 * authentication socket.
174 */
b4748e2f 175#define SSH_AGENTPID_ENV_NAME "SSH_AGENT_PID"
50da1126 176
57112b5a 177/*
178 * Default path to ssh-askpass used by ssh-add,
179 * environment variable for overwriting the default location
180 */
db28aeb5 181#ifndef SSH_ASKPASS_DEFAULT
182# define SSH_ASKPASS_DEFAULT "/usr/X11R6/bin/ssh-askpass"
183#endif
57112b5a 184#define SSH_ASKPASS_ENV "SSH_ASKPASS"
185
aa3378df 186/*
187 * Force host key length and server key length to differ by at least this
188 * many bits. This is to make double encryption with rsaref work.
189 */
8efc0c15 190#define SSH_KEY_BITS_RESERVED 128
191
aa3378df 192/*
193 * Length of the session key in bytes. (Specified as 256 bits in the
194 * protocol.)
195 */
8efc0c15 196#define SSH_SESSION_KEY_LENGTH 32
197
198/* Name of Kerberos service for SSH to use. */
199#define KRB4_SERVICE_NAME "rcmd"
200
aa3378df 201/*
202 * Authentication methods. New types can be added, but old types should not
203 * be removed for compatibility. The maximum allowed value is 31.
204 */
8efc0c15 205#define SSH_AUTH_RHOSTS 1
206#define SSH_AUTH_RSA 2
207#define SSH_AUTH_PASSWORD 3
208#define SSH_AUTH_RHOSTS_RSA 4
5260325f 209#define SSH_AUTH_TIS 5
8efc0c15 210#define SSH_AUTH_KERBEROS 6
211#define SSH_PASS_KERBEROS_TGT 7
aa3378df 212 /* 8 to 15 are reserved */
8efc0c15 213#define SSH_PASS_AFS_TOKEN 21
214
215/* Protocol flags. These are bit masks. */
aa3378df 216#define SSH_PROTOFLAG_SCREEN_NUMBER 1 /* X11 forwarding includes screen */
217#define SSH_PROTOFLAG_HOST_IN_FWD_OPEN 2 /* forwarding opens contain host */
218
219/*
220 * Definition of message types. New values can be added, but old values
221 * should not be removed or without careful consideration of the consequences
222 * for compatibility. The maximum value is 254; value 255 is reserved for
223 * future extension.
224 */
225/* Message name */ /* msg code */ /* arguments */
8efc0c15 226#define SSH_MSG_NONE 0 /* no message */
227#define SSH_MSG_DISCONNECT 1 /* cause (string) */
228#define SSH_SMSG_PUBLIC_KEY 2 /* ck,msk,srvk,hostk */
229#define SSH_CMSG_SESSION_KEY 3 /* key (BIGNUM) */
230#define SSH_CMSG_USER 4 /* user (string) */
231#define SSH_CMSG_AUTH_RHOSTS 5 /* user (string) */
232#define SSH_CMSG_AUTH_RSA 6 /* modulus (BIGNUM) */
233#define SSH_SMSG_AUTH_RSA_CHALLENGE 7 /* int (BIGNUM) */
234#define SSH_CMSG_AUTH_RSA_RESPONSE 8 /* int (BIGNUM) */
235#define SSH_CMSG_AUTH_PASSWORD 9 /* pass (string) */
236#define SSH_CMSG_REQUEST_PTY 10 /* TERM, tty modes */
237#define SSH_CMSG_WINDOW_SIZE 11 /* row,col,xpix,ypix */
238#define SSH_CMSG_EXEC_SHELL 12 /* */
239#define SSH_CMSG_EXEC_CMD 13 /* cmd (string) */
240#define SSH_SMSG_SUCCESS 14 /* */
241#define SSH_SMSG_FAILURE 15 /* */
242#define SSH_CMSG_STDIN_DATA 16 /* data (string) */
243#define SSH_SMSG_STDOUT_DATA 17 /* data (string) */
244#define SSH_SMSG_STDERR_DATA 18 /* data (string) */
245#define SSH_CMSG_EOF 19 /* */
246#define SSH_SMSG_EXITSTATUS 20 /* status (int) */
247#define SSH_MSG_CHANNEL_OPEN_CONFIRMATION 21 /* channel (int) */
248#define SSH_MSG_CHANNEL_OPEN_FAILURE 22 /* channel (int) */
249#define SSH_MSG_CHANNEL_DATA 23 /* ch,data (int,str) */
250#define SSH_MSG_CHANNEL_CLOSE 24 /* channel (int) */
251#define SSH_MSG_CHANNEL_CLOSE_CONFIRMATION 25 /* channel (int) */
252/* SSH_CMSG_X11_REQUEST_FORWARDING 26 OBSOLETE */
253#define SSH_SMSG_X11_OPEN 27 /* channel (int) */
254#define SSH_CMSG_PORT_FORWARD_REQUEST 28 /* p,host,hp (i,s,i) */
255#define SSH_MSG_PORT_OPEN 29 /* ch,h,p (i,s,i) */
256#define SSH_CMSG_AGENT_REQUEST_FORWARDING 30 /* */
257#define SSH_SMSG_AGENT_OPEN 31 /* port (int) */
258#define SSH_MSG_IGNORE 32 /* string */
259#define SSH_CMSG_EXIT_CONFIRMATION 33 /* */
260#define SSH_CMSG_X11_REQUEST_FORWARDING 34 /* proto,data (s,s) */
261#define SSH_CMSG_AUTH_RHOSTS_RSA 35 /* user,mod (s,mpi) */
262#define SSH_MSG_DEBUG 36 /* string */
263#define SSH_CMSG_REQUEST_COMPRESSION 37 /* level 1-9 (int) */
264#define SSH_CMSG_MAX_PACKET_SIZE 38 /* size 4k-1024k (int) */
5260325f 265#define SSH_CMSG_AUTH_TIS 39 /* we use this for s/key */
266#define SSH_SMSG_AUTH_TIS_CHALLENGE 40 /* challenge (string) */
267#define SSH_CMSG_AUTH_TIS_RESPONSE 41 /* response (string) */
8efc0c15 268#define SSH_CMSG_AUTH_KERBEROS 42 /* (KTEXT) */
269#define SSH_SMSG_AUTH_KERBEROS_RESPONSE 43 /* (KTEXT) */
270#define SSH_CMSG_HAVE_KERBEROS_TGT 44 /* credentials (s) */
271#define SSH_CMSG_HAVE_AFS_TOKEN 65 /* token (s) */
272
8efc0c15 273/*------------ definitions for login.c -------------*/
274
aa3378df 275/*
276 * Returns the time when the user last logged in. Returns 0 if the
277 * information is not available. This must be called before record_login.
278 * The host from which the user logged in is stored in buf.
279 */
5260325f 280unsigned long
281get_last_login_time(uid_t uid, const char *logname,
282 char *buf, unsigned int bufsize);
8efc0c15 283
aa3378df 284/*
285 * Records that the user has logged in. This does many things normally done
286 * by login(1).
287 */
5260325f 288void
289record_login(int pid, const char *ttyname, const char *user, uid_t uid,
48e671d5 290 const char *host, struct sockaddr *addr);
8efc0c15 291
aa3378df 292/*
293 * Records that the user has logged out. This does many thigs normally done
294 * by login(1) or init.
295 */
5260325f 296void record_logout(int pid, const char *ttyname);
8efc0c15 297
298/*------------ definitions for sshconnect.c ----------*/
299
aa3378df 300/*
301 * Opens a TCP/IP connection to the remote server on the given host. If port
302 * is 0, the default port will be used. If anonymous is zero, a privileged
303 * port will be allocated to make the connection. This requires super-user
304 * privileges if anonymous is false. Connection_attempts specifies the
305 * maximum number of tries, one per second. This returns true on success,
306 * and zero on failure. If the connection is successful, this calls
307 * packet_set_connection for the connection.
308 */
5260325f 309int
48e671d5 310ssh_connect(const char *host, struct sockaddr_storage * hostaddr,
57112b5a 311 u_short port, int connection_attempts,
5260325f 312 int anonymous, uid_t original_real_uid,
313 const char *proxy_command);
8efc0c15 314
aa3378df 315/*
316 * Starts a dialog with the server, and authenticates the current user on the
317 * server. This does not need any extra privileges. The basic connection to
318 * the server must already have been established before this is called. If
319 * login fails, this function prints an error and never returns. This
320 * initializes the random state, and leaves it initialized (it will also have
321 * references from the packet module).
322 */
6a17f9c2 323
5260325f 324void
325ssh_login(int host_key_valid, RSA * host_key, const char *host,
48e671d5 326 struct sockaddr * hostaddr, uid_t original_real_uid);
8efc0c15 327
328/*------------ Definitions for various authentication methods. -------*/
329
aa3378df 330/*
331 * Tries to authenticate the user using the .rhosts file. Returns true if
332 * authentication succeeds. If ignore_rhosts is non-zero, this will not
333 * consider .rhosts and .shosts (/etc/hosts.equiv will still be used).
334 */
5260325f 335int auth_rhosts(struct passwd * pw, const char *client_user);
8efc0c15 336
aa3378df 337/*
338 * Tries to authenticate the user using the .rhosts file and the host using
339 * its host key. Returns true if authentication succeeds.
340 */
5260325f 341int
4fe2af09 342auth_rhosts_rsa(struct passwd * pw, const char *client_user, RSA* client_host_key);
8efc0c15 343
aa3378df 344/*
345 * Tries to authenticate the user using password. Returns true if
346 * authentication succeeds.
347 */
5260325f 348int auth_password(struct passwd * pw, const char *password);
8efc0c15 349
aa3378df 350/*
351 * Performs the RSA authentication dialog with the client. This returns 0 if
352 * the client could not be authenticated, and 1 if authentication was
353 * successful. This may exit if there is a serious protocol violation.
354 */
5260325f 355int auth_rsa(struct passwd * pw, BIGNUM * client_n);
8efc0c15 356
aa3378df 357/*
358 * Parses an RSA key (number of bits, e, n) from a string. Moves the pointer
359 * over the key. Skips any whitespace at the beginning and at end.
360 */
5260325f 361int auth_rsa_read_key(char **cpp, unsigned int *bitsp, BIGNUM * e, BIGNUM * n);
8efc0c15 362
aa3378df 363/*
364 * Returns the name of the machine at the other end of the socket. The
365 * returned string should be freed by the caller.
366 */
5260325f 367char *get_remote_hostname(int socket);
8efc0c15 368
aa3378df 369/*
370 * Return the canonical name of the host in the other side of the current
371 * connection (as returned by packet_get_connection). The host name is
372 * cached, so it is efficient to call this several times.
373 */
8efc0c15 374const char *get_canonical_hostname(void);
375
aa3378df 376/*
377 * Returns the remote IP address as an ascii string. The value need not be
378 * freed by the caller.
379 */
8efc0c15 380const char *get_remote_ipaddr(void);
381
382/* Returns the port number of the peer of the socket. */
5260325f 383int get_peer_port(int sock);
8efc0c15 384
48e671d5 385/* Returns the port number of the remote/local host. */
5260325f 386int get_remote_port(void);
48e671d5 387int get_local_port(void);
388
8efc0c15 389
aa3378df 390/*
391 * Performs the RSA authentication challenge-response dialog with the client,
392 * and returns true (non-zero) if the client gave the correct answer to our
393 * challenge; returns zero if the client gives a wrong answer.
394 */
4fe2af09 395int auth_rsa_challenge_dialog(RSA *pk);
8efc0c15 396
aa3378df 397/*
398 * Reads a passphrase from /dev/tty with echo turned off. Returns the
399 * passphrase (allocated with xmalloc). Exits if EOF is encountered. If
400 * from_stdin is true, the passphrase will be read from stdin instead.
401 */
5260325f 402char *read_passphrase(const char *prompt, int from_stdin);
8efc0c15 403
aa3378df 404/*
405 * Saves the authentication (private) key in a file, encrypting it with
406 * passphrase. The identification of the file (lowest 64 bits of n) will
407 * precede the key to provide identification of the key without needing a
408 * passphrase.
409 */
5260325f 410int
411save_private_key(const char *filename, const char *passphrase,
412 RSA * private_key, const char *comment);
8efc0c15 413
aa3378df 414/*
415 * Loads the public part of the key file (public key and comment). Returns 0
416 * if an error occurred; zero if the public key was successfully read. The
417 * comment of the key is returned in comment_return if it is non-NULL; the
418 * caller must free the value with xfree.
419 */
5260325f 420int
421load_public_key(const char *filename, RSA * pub,
422 char **comment_return);
8efc0c15 423
aa3378df 424/*
425 * Loads the private key from the file. Returns 0 if an error is encountered
426 * (file does not exist or is not readable, or passphrase is bad). This
427 * initializes the private key. The comment of the key is returned in
428 * comment_return if it is non-NULL; the caller must free the value with
429 * xfree.
430 */
5260325f 431int
432load_private_key(const char *filename, const char *passphrase,
433 RSA * private_key, char **comment_return);
8efc0c15 434
6fa724bc 435/*------------ Definitions for logging. -----------------------*/
436
437/* Supported syslog facilities and levels. */
5260325f 438typedef enum {
439 SYSLOG_FACILITY_DAEMON,
440 SYSLOG_FACILITY_USER,
441 SYSLOG_FACILITY_AUTH,
442 SYSLOG_FACILITY_LOCAL0,
443 SYSLOG_FACILITY_LOCAL1,
444 SYSLOG_FACILITY_LOCAL2,
445 SYSLOG_FACILITY_LOCAL3,
446 SYSLOG_FACILITY_LOCAL4,
447 SYSLOG_FACILITY_LOCAL5,
448 SYSLOG_FACILITY_LOCAL6,
449 SYSLOG_FACILITY_LOCAL7
450} SyslogFacility;
451
452typedef enum {
453 SYSLOG_LEVEL_QUIET,
454 SYSLOG_LEVEL_FATAL,
455 SYSLOG_LEVEL_ERROR,
456 SYSLOG_LEVEL_INFO,
457 SYSLOG_LEVEL_VERBOSE,
458 SYSLOG_LEVEL_DEBUG
459} LogLevel;
6fa724bc 460/* Initializes logging. */
5260325f 461void log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr);
6fa724bc 462
463/* Logging implementation, depending on server or client */
5260325f 464void do_log(LogLevel level, const char *fmt, va_list args);
6fa724bc 465
9d6b7add 466/* name to facility/level */
467SyslogFacility log_facility_number(char *name);
468LogLevel log_level_number(char *name);
469
6fa724bc 470/* Output a message to syslog or stderr */
5260325f 471void fatal(const char *fmt,...) __attribute__((format(printf, 1, 2)));
472void error(const char *fmt,...) __attribute__((format(printf, 1, 2)));
473void log(const char *fmt,...) __attribute__((format(printf, 1, 2)));
474void verbose(const char *fmt,...) __attribute__((format(printf, 1, 2)));
475void debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));
6fa724bc 476
477/* same as fatal() but w/o logging */
5260325f 478void fatal_cleanup(void);
6fa724bc 479
aa3378df 480/*
481 * Registers a cleanup function to be called by fatal()/fatal_cleanup()
482 * before exiting. It is permissible to call fatal_remove_cleanup for the
483 * function itself from the function.
484 */
5260325f 485void fatal_add_cleanup(void (*proc) (void *context), void *context);
6fa724bc 486
487/* Removes a cleanup function to be called at fatal(). */
5260325f 488void fatal_remove_cleanup(void (*proc) (void *context), void *context);
6fa724bc 489
e78a59f5 490/* ---- misc */
491
aa3378df 492/*
493 * Expands tildes in the file name. Returns data allocated by xmalloc.
494 * Warning: this calls getpw*.
495 */
5260325f 496char *tilde_expand_filename(const char *filename, uid_t my_uid);
8efc0c15 497
aa3378df 498/*
499 * Performs the interactive session. This handles data transmission between
500 * the client and the program. Note that the notion of stdin, stdout, and
501 * stderr in this function is sort of reversed: this function writes to stdin
502 * (of the child program), and reads from stdout and stderr (of the child
503 * program).
504 */
5260325f 505void server_loop(int pid, int fdin, int fdout, int fderr);
e78a59f5 506void server_loop2(void);
8efc0c15 507
508/* Client side main loop for the interactive session. */
5260325f 509int client_loop(int have_pty, int escape_char);
8efc0c15 510
511/* Linked list of custom environment strings (see auth-rsa.c). */
512struct envstring {
5260325f 513 struct envstring *next;
514 char *s;
8efc0c15 515};
a408af76 516
517/*
518 * Ensure all of data on socket comes through. f==read || f==write
519 */
c8d54615 520ssize_t atomicio(ssize_t (*f)(), int fd, void *s, size_t n);
a408af76 521
8efc0c15 522#ifdef KRB4
523#include <krb.h>
aa3378df 524/*
525 * Performs Kerberos v4 mutual authentication with the client. This returns 0
526 * if the client could not be authenticated, and 1 if authentication was
527 * successful. This may exit if there is a serious protocol violation.
528 */
5260325f 529int auth_krb4(const char *server_user, KTEXT auth, char **client);
530int krb4_init(uid_t uid);
531void krb4_cleanup_proc(void *ignore);
57112b5a 532int auth_krb4_password(struct passwd * pw, const char *password);
8efc0c15 533
534#ifdef AFS
535#include <kafs.h>
536
537/* Accept passed Kerberos v4 ticket-granting ticket and AFS tokens. */
5260325f 538int auth_kerberos_tgt(struct passwd * pw, const char *string);
539int auth_afs_token(struct passwd * pw, const char *token_string);
8efc0c15 540
5260325f 541int creds_to_radix(CREDENTIALS * creds, unsigned char *buf);
542int radix_to_creds(const char *buf, CREDENTIALS * creds);
543#endif /* AFS */
8efc0c15 544
5260325f 545#endif /* KRB4 */
8efc0c15 546
547#ifdef SKEY
548#include <skey.h>
5260325f 549char *skey_fake_keyinfo(char *username);
57112b5a 550int auth_skey_password(struct passwd * pw, const char *password);
5260325f 551#endif /* SKEY */
8efc0c15 552
48e671d5 553/* AF_UNSPEC or AF_INET or AF_INET6 */
554extern int IPv4or6;
555
a5c9cd31 556#ifdef USE_PAM
557#include "auth-pam.h"
558#endif /* USE_PAM */
559
5260325f 560#endif /* SSH_H */
This page took 0.478987 seconds and 5 git commands to generate.