]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/libstrongswan/plugins/sha2/sha2_plugin.h
Update copyright headers after acquisition by secunet
[thirdparty/strongswan.git] / src / libstrongswan / plugins / sha2 / sha2_plugin.h
1 /*
2 * Copyright (C) 2008 Martin Willi
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * for more details.
13 */
14
15 /**
16 * @defgroup sha2_p sha2
17 * @ingroup plugins
18 *
19 * @defgroup sha2_plugin sha2_plugin
20 * @{ @ingroup sha2_p
21 */
22
23 #ifndef SHA2_PLUGIN_H_
24 #define SHA2_PLUGIN_H_
25
26 #include <plugins/plugin.h>
27
28 typedef struct sha2_plugin_t sha2_plugin_t;
29
30 /**
31 * Plugin implementing the SHA256, SHA384 and SHA512 algorithms in software.
32 */
33 struct sha2_plugin_t {
34
35 /**
36 * implements plugin interface
37 */
38 plugin_t plugin;
39 };
40
41 #endif /** SHA2_PLUGIN_H_ @}*/