2 * Copyright (C) 2008 Martin Willi
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_identity_i eap_identity
20 * @{ @ingroup eap_identity
23 #ifndef EAP_IDENTITY_H_
24 #define EAP_IDENTITY_H_
26 typedef struct eap_identity_t eap_identity_t
;
28 #include <sa/authenticators/eap/eap_method.h>
31 * Implementation of the eap_method_t interface using EAP Identity.
33 struct eap_identity_t
{
36 * Implemented eap_method_t interface.
38 eap_method_t eap_method_interface
;
42 * Creates the EAP method EAP Identity, acting as server.
44 * @param server ID of the EAP server
45 * @param peer ID of the EAP client
46 * @return eap_identity_t object
48 eap_identity_t
*eap_identity_create_server(identification_t
*server
,
49 identification_t
*peer
);
52 * Creates the EAP method EAP Identity, acting as peer.
54 * @param server ID of the EAP server
55 * @param peer ID of the EAP client
56 * @return eap_identity_t object
58 eap_identity_t
*eap_identity_create_peer(identification_t
*server
,
59 identification_t
*peer
);
61 #endif /* EAP_IDENTITY_H_ @}*/