2 * Copyright (C) 2009 Tobias Brunner
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * @defgroup eap_mschapv2_i eap_mschapv2
20 * @{ @ingroup eap_mschapv2
23 #ifndef EAP_MSCHAPV2_H_
24 #define EAP_MSCHAPV2_H_
26 typedef struct eap_mschapv2_t eap_mschapv2_t
;
28 #include <sa/authenticators/eap/eap_method.h>
31 * Implementation of the eap_method_t interface using EAP-MS-CHAPv2.
33 struct eap_mschapv2_t
{
36 * Implemented eap_method_t interface.
38 eap_method_t eap_method_interface
;
42 * Creates the EAP method EAP-MS-CHAPv2 acting as server.
44 * @param server ID of the EAP server
45 * @param peer ID of the EAP client
46 * @return eap_mschapv2_t object
48 eap_mschapv2_t
*eap_mschapv2_create_server(identification_t
*server
, identification_t
*peer
);
51 * Creates the EAP method EAP-MS-CHAPv2 acting as peer.
53 * @param server ID of the EAP server
54 * @param peer ID of the EAP client
55 * @return eap_mschapv2_t object
57 eap_mschapv2_t
*eap_mschapv2_create_peer(identification_t
*server
, identification_t
*peer
);
59 #endif /* EAP_MSCHAPV2_H_ @}*/