pam_modutil_private.h 516 B

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