Annotation of embedaddon/strongswan/src/libcharon/plugins/eap_md5/eap_md5_plugin.c, revision 1.1.1.1

1.1       misho       1: /*
                      2:  * Copyright (C) 2008 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: #include "eap_md5_plugin.h"
                     17: #include "eap_md5.h"
                     18: 
                     19: #include <daemon.h>
                     20: 
                     21: METHOD(plugin_t, get_name, char*,
                     22:        eap_md5_plugin_t *this)
                     23: {
                     24:        return "eap-md5";
                     25: }
                     26: 
                     27: METHOD(plugin_t, get_features, int,
                     28:        eap_md5_plugin_t *this, plugin_feature_t *features[])
                     29: {
                     30:        static plugin_feature_t f[] = {
                     31:                PLUGIN_CALLBACK(eap_method_register, eap_md5_create_server),
                     32:                        PLUGIN_PROVIDE(EAP_SERVER, EAP_MD5),
                     33:                                PLUGIN_DEPENDS(HASHER, HASH_MD5),
                     34:                                PLUGIN_DEPENDS(RNG, RNG_WEAK),
                     35:                PLUGIN_CALLBACK(eap_method_register, eap_md5_create_peer),
                     36:                        PLUGIN_PROVIDE(EAP_PEER, EAP_MD5),
                     37:                                PLUGIN_DEPENDS(HASHER, HASH_MD5),
                     38:                                PLUGIN_DEPENDS(RNG, RNG_WEAK),
                     39:        };
                     40:        *features = f;
                     41:        return countof(f);
                     42: }
                     43: 
                     44: METHOD(plugin_t, destroy, void,
                     45:        eap_md5_plugin_t *this)
                     46: {
                     47:        free(this);
                     48: }
                     49: 
                     50: /*
                     51:  * see header file
                     52:  */
                     53: plugin_t *eap_md5_plugin_create()
                     54: {
                     55:        eap_md5_plugin_t *this;
                     56: 
                     57:        INIT(this,
                     58:                .plugin = {
                     59:                        .get_name = _get_name,
                     60:                        .get_features = _get_features,
                     61:                        .destroy = _destroy,
                     62:                },
                     63:        );
                     64: 
                     65:        return &this->plugin;
                     66: }
                     67: 

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