]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/libcharon/plugins/eap_md5/eap_md5_plugin.c
Update copyright headers after acquisition by secunet
[thirdparty/strongswan.git] / src / libcharon / plugins / eap_md5 / eap_md5_plugin.c
1 /*
2 * Copyright (C) 2008 Martin Willi
3 *
4 * Copyright (C) secunet Security Networks AG
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
15 */
16
17 #include "eap_md5_plugin.h"
18 #include "eap_md5.h"
19
20 #include <daemon.h>
21
22 METHOD(plugin_t, get_name, char*,
23 eap_md5_plugin_t *this)
24 {
25 return "eap-md5";
26 }
27
28 METHOD(plugin_t, get_features, int,
29 eap_md5_plugin_t *this, plugin_feature_t *features[])
30 {
31 static plugin_feature_t f[] = {
32 PLUGIN_CALLBACK(eap_method_register, eap_md5_create_server),
33 PLUGIN_PROVIDE(EAP_SERVER, EAP_MD5),
34 PLUGIN_DEPENDS(HASHER, HASH_MD5),
35 PLUGIN_DEPENDS(RNG, RNG_WEAK),
36 PLUGIN_CALLBACK(eap_method_register, eap_md5_create_peer),
37 PLUGIN_PROVIDE(EAP_PEER, EAP_MD5),
38 PLUGIN_DEPENDS(HASHER, HASH_MD5),
39 PLUGIN_DEPENDS(RNG, RNG_WEAK),
40 };
41 *features = f;
42 return countof(f);
43 }
44
45 METHOD(plugin_t, destroy, void,
46 eap_md5_plugin_t *this)
47 {
48 free(this);
49 }
50
51 /*
52 * see header file
53 */
54 plugin_t *eap_md5_plugin_create()
55 {
56 eap_md5_plugin_t *this;
57
58 INIT(this,
59 .plugin = {
60 .get_name = _get_name,
61 .get_features = _get_features,
62 .destroy = _destroy,
63 },
64 );
65
66 return &this->plugin;
67 }
68