1 #ifndef PAMMODUTIL_PRIVATE_H
2 #define PAMMODUTIL_PRIVATE_H
3
4 /*
5 * $Id$
6 *
7 * Copyright (c) 2001 Andrew Morgan <morgan@kernel.org>
8 */
9
10 #include "config.h"
11
12 #include <security/_pam_macros.h>
13 #include <security/pam_modules.h>
14 #include <security/pam_modutil.h>
15
16 #define PWD_INITIAL_LENGTH 0x400
17 #define PWD_ABSURD_PWD_LENGTH 0x40001
18 #define PWD_LENGTH_SHIFT 4 /* 2^4 == 16 */
19
20 extern void
21 pam_modutil_cleanup(pam_handle_t *pamh, void *data,
22 int error_status);
23
24 #endif /* PAMMODUTIL_PRIVATE_H */