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
15 * $Id: eap_gtc.h 3589 2008-03-13 14:14:44Z martin $
19 * @defgroup eap_gtc_i eap_gtc
26 typedef struct eap_gtc_t eap_gtc_t
;
28 #include <sa/authenticators/eap/eap_method.h>
31 * Implementation of the eap_method_t interface using EAP-GTC.
33 * This implementation of draft-sheffer-ikev2-gtc-00.txt uses PAM to
34 * verify user credentials.
39 * Implemented eap_method_t interface.
41 eap_method_t eap_method_interface
;
45 * Creates the EAP method EAP-GTC acting as server.
47 * @param server ID of the EAP server
48 * @param peer ID of the EAP client
49 * @return eap_gtc_t object
51 eap_gtc_t
*eap_gtc_create_server(identification_t
*server
, identification_t
*peer
);
54 * Creates the EAP method EAP-GTC acting as peer.
56 * @param server ID of the EAP server
57 * @param peer ID of the EAP client
58 * @return eap_gtc_t object
60 eap_gtc_t
*eap_gtc_create_peer(identification_t
*server
, identification_t
*peer
);
62 #endif /* EAP_GTC_H_ @}*/