]> andersk Git - gssapi-openssh.git/blob - openssh/auth-pam.h
fabd3d04288f2e8c9b8ef74549aa8eff42ea0a2a
[gssapi-openssh.git] / openssh / auth-pam.h
1 /* $Id$ */
2
3 #include "includes.h"
4 #ifdef USE_PAM
5
6 #include <pwd.h> /* For struct passwd */
7
8 void start_pam(const char *user);
9 void finish_pam(void);
10 int auth_pam_password(Authctxt *authctxt, const char *password);
11 char **fetch_pam_environment(void);
12 int do_pam_authenticate(int flags);
13 int do_pam_account(char *username, char *remote_user);
14 void do_pam_session(char *username, const char *ttyname);
15 void do_pam_setcred(int init);
16 void print_pam_messages(void);
17 int is_pam_password_change_required(void);
18 void do_pam_chauthtok(void);
19 void do_pam_set_conv(struct pam_conv *);
20 void message_cat(char **p, const char *a);
21
22 #endif /* USE_PAM */
This page took 0.051396 seconds and 3 git commands to generate.