1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2009 */
6 /* See the file NOTICE for conditions of use and distribution. */
8 /* Private structure for the private options. */
11 uschar *server_secret;
12 uschar *client_secret;
14 } auth_cram_md5_options_block;
16 /* Data for reading the private options. */
18 extern optionlist auth_cram_md5_options[];
19 extern int auth_cram_md5_options_count;
21 /* Block containing default values. */
23 extern auth_cram_md5_options_block auth_cram_md5_option_defaults;
25 /* The entry points for the mechanism */
27 extern void auth_cram_md5_init(auth_instance *);
28 extern int auth_cram_md5_server(auth_instance *, uschar *);
29 extern int auth_cram_md5_client(auth_instance *, void *, int, uschar *, int);
31 /* End of cram_md5.h */