blob: a921ee078aab68cbe4bcc83a4918352aa661f0a8 [file] [log] [blame]
Damien Millere9cf3572001-02-09 12:55:35 +11001/* $Id: auth-pam.h,v 1.9 2001/02/09 01:55:36 djm Exp $ */
2
Damien Millere72b7af1999-12-30 15:08:44 +11003#include "includes.h"
4#ifdef USE_PAM
5
6#include <pwd.h> /* For struct passwd */
7
Damien Miller22e22bf2001-01-19 15:46:38 +11008void start_pam(const char *user);
Damien Millere72b7af1999-12-30 15:08:44 +11009void finish_pam(void);
10int auth_pam_password(struct passwd *pw, const char *password);
11char **fetch_pam_environment(void);
Damien Millerb8481582000-12-03 11:51:51 +110012int do_pam_authenticate(int flags);
Damien Millere72b7af1999-12-30 15:08:44 +110013int do_pam_account(char *username, char *remote_user);
Damien Miller3e955e72000-01-27 10:55:38 +110014void do_pam_session(char *username, const char *ttyname);
Kevin Steves6beac8c2000-10-14 15:08:49 +000015void do_pam_setcred(void);
Damien Millere72b7af1999-12-30 15:08:44 +110016void print_pam_messages(void);
Kevin Steves092f2ef2000-10-14 13:36:13 +000017int pam_password_change_required(void);
Kevin Steves6beac8c2000-10-14 15:08:49 +000018void do_pam_chauthtok(void);
Damien Millerb8481582000-12-03 11:51:51 +110019void pam_set_conv(struct pam_conv *);
Damien Miller63dc3e92001-02-07 12:58:33 +110020void message_cat(char **p, const char *a);
Damien Millere72b7af1999-12-30 15:08:44 +110021
22#endif /* USE_PAM */