summaryrefslogtreecommitdiff
path: root/auth.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-10 19:28:02 +1000
committerDamien Miller <djm@mindrot.org>2003-05-10 19:28:02 +1000
commit4f9f42a9bb6a6aa8f6100d873dc6344f2f9994de (patch)
treef81c39146e1cfabb4b198f57f60453b2dcaac299 /auth.h
parentc437cda328b4733b59a7ed028b72e6b7f58f86e6 (diff)
- (djm) Merge FreeBSD PAM code: replaces PAM password auth kludge with
proper challenge-response module
Diffstat (limited to 'auth.h')
-rw-r--r--auth.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/auth.h b/auth.h
index c75d75366..81d9655f7 100644
--- a/auth.h
+++ b/auth.h
@@ -1,4 +1,5 @@
1/* $OpenBSD: auth.h,v 1.41 2002/09/26 11:38:43 markus Exp $ */ 1/* $OpenBSD: auth.h,v 1.41 2002/09/26 11:38:43 markus Exp $ */
2/* $FreeBSD: src/crypto/openssh/auth.h,v 1.10 2003/03/31 13:45:36 des Exp $ */
2 3
3/* 4/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 5 * Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -133,7 +134,6 @@ void krb5_cleanup_proc(void *authctxt);
133#endif /* KRB5 */ 134#endif /* KRB5 */
134 135
135#include "auth-pam.h" 136#include "auth-pam.h"
136#include "auth2-pam.h"
137 137
138Authctxt *do_authentication(void); 138Authctxt *do_authentication(void);
139Authctxt *do_authentication2(void); 139Authctxt *do_authentication2(void);
@@ -159,6 +159,7 @@ struct passwd * getpwnamallow(const char *user);
159 159
160char *get_challenge(Authctxt *); 160char *get_challenge(Authctxt *);
161int verify_response(Authctxt *, const char *); 161int verify_response(Authctxt *, const char *);
162void abandon_challenge_response(Authctxt *);
162 163
163struct passwd * auth_get_user(void); 164struct passwd * auth_get_user(void);
164 165