345f98e5ee44ee89a7d6c0fcdf0bdc7b17fb2f54
[apps/madmutt.git] / imap / auth.h
1 /*
2  * Copyright (C) 2000-1 Brendan Cully <brendan@kublai.com>
3  * 
4  *     This program is free software; you can redistribute it and/or modify
5  *     it under the terms of the GNU General Public License as published by
6  *     the Free Software Foundation; either version 2 of the License, or
7  *     (at your option) any later version.
8  * 
9  *     This program is distributed in the hope that it will be useful,
10  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *     GNU General Public License for more details.
13  * 
14  *     You should have received a copy of the GNU General Public License
15  *     along with this program; if not, write to the Free Software
16  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
17  */
18
19 /* common defs for authenticators. A good place to set up a generic callback
20  * system */
21
22 #ifndef _IMAP_AUTH_H
23 #define _IMAP_AUTH_H 1
24
25 typedef enum {
26   IMAP_AUTH_SUCCESS = 0,
27   IMAP_AUTH_FAILURE,
28   IMAP_AUTH_UNAVAIL
29 } imap_auth_res_t;
30
31
32 typedef struct {
33   /* do authentication, using named method or any available if method is NULL */
34   imap_auth_res_t (*authenticate) (IMAP_DATA * idata, const char *method);
35   /* name of authentication method supported, NULL means variable. If this
36    * is not null, authenticate may ignore the second parameter. */
37   const char *method;
38 } imap_auth_t;
39
40 /* external authenticator prototypes */
41 #ifndef USE_SASL
42 imap_auth_res_t imap_auth_anon (IMAP_DATA * idata, const char *method);
43 imap_auth_res_t imap_auth_cram_md5 (IMAP_DATA * idata, const char *method);
44 #endif
45 imap_auth_res_t imap_auth_login (IMAP_DATA * idata, const char *method);
46
47 #ifdef USE_GSS
48 imap_auth_res_t imap_auth_gss (IMAP_DATA * idata, const char *method);
49 #endif
50 #ifdef USE_SASL
51 imap_auth_res_t imap_auth_sasl (IMAP_DATA * idata, const char *method);
52 #endif
53
54 #endif /* _IMAP_AUTH_H */