Annotation of embedaddon/strongswan/src/libcharon/plugins/eap_aka/eap_aka_plugin.h, revision 1.1.1.1

1.1       misho       1: /*
                      2:  * Copyright (C) 2008-2009 Martin Willi
                      3:  * HSR Hochschule fuer Technik Rapperswil
                      4:  *
                      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>.
                      9:  *
                     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
                     13:  * for more details.
                     14:  */
                     15: 
                     16: /**
                     17:  * @defgroup eap_aka eap_aka
                     18:  * @ingroup cplugins
                     19:  *
                     20:  * @defgroup eap_aka_plugin eap_aka_plugin
                     21:  * @{ @ingroup eap_aka
                     22:  */
                     23: 
                     24: #ifndef EAP_AKA_PLUGIN_H_
                     25: #define EAP_AKA_PLUGIN_H_
                     26: 
                     27: #include <plugins/plugin.h>
                     28: 
                     29: typedef struct eap_aka_plugin_t eap_aka_plugin_t;
                     30: 
                     31: /**
                     32:  * EAP-AKA plugin.
                     33:  *
                     34:  * EAP-AKA uses 3rd generation mobile phone standard authentication
                     35:  * mechanism for authentication, as defined RFC4187.
                     36:  *
                     37:  * This plugin implements the protocol level of EAP-AKA and uses simaka_card_t
                     38:  * and simaka_provider_t backends to provide triplets. It registers a
                     39:  * simaka_manager_t on the library as "aka-manager", other plugins can use it
                     40:  * to provide the required backends.
                     41:  */
                     42: struct eap_aka_plugin_t {
                     43: 
                     44:        /**
                     45:         * implements plugin interface
                     46:         */
                     47:        plugin_t plugin;
                     48: };
                     49: 
                     50: #endif /** EAP_AKA_PLUGIN_H_ @}*/

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>