4 * @brief Interface of eap_md5_t.
9 * Copyright (C) 2007 Martin Willi
10 * Hochschule fuer Technik Rapperswil
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
26 typedef struct eap_md5_t eap_md5_t
;
28 #include <sa/authenticators/eap/eap_method.h>
31 * @brief Implementation of the eap_method_t interface using EAP-MD5 (CHAP).
35 * - eap_client_create() using eap_method EAP_MD5
42 * Implemented eap_method_t interface.
44 eap_method_t eap_method_interface
;
48 * @brief Creates the EAP method EAP-MD5.
50 * @param server ID of the EAP server
51 * @param peer ID of the EAP client
52 * @return eap_md5_t object
56 eap_md5_t
*eap_create(eap_role_t role
,
57 identification_t
*server
, identification_t
*peer
);
59 #endif /* EAP_MD5_H_ */