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