aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/plugins/md4
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2010-12-04 20:45:49 +0100
committerAndreas Steffen <andreas.steffen@strongswan.org>2010-12-04 20:45:49 +0100
commitc7b778450e477f3537f14d3a445c23438f5dcf86 (patch)
tree2c19e36295703894f318a37d5863632f85108fe6 /src/libstrongswan/plugins/md4
parente5e79bd4036dd53418e43df7c2371a4761f1f1ec (diff)
downloadstrongswan-c7b778450e477f3537f14d3a445c23438f5dcf86.tar.bz2
strongswan-c7b778450e477f3537f14d3a445c23438f5dcf86.tar.xz
Migrated md4_plugin_t to INIT/METHOD macros
Diffstat (limited to 'src/libstrongswan/plugins/md4')
-rw-r--r--src/libstrongswan/plugins/md4/md4_plugin.c18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/libstrongswan/plugins/md4/md4_plugin.c b/src/libstrongswan/plugins/md4/md4_plugin.c
index 38ae0d4bc..366eaac19 100644
--- a/src/libstrongswan/plugins/md4/md4_plugin.c
+++ b/src/libstrongswan/plugins/md4/md4_plugin.c
@@ -31,10 +31,8 @@ struct private_md4_plugin_t {
md4_plugin_t public;
};
-/**
- * Implementation of md4_plugin_t.destroy
- */
-static void destroy(private_md4_plugin_t *this)
+METHOD(plugin_t, destroy, void,
+ private_md4_plugin_t *this)
{
lib->crypto->remove_hasher(lib->crypto,
(hasher_constructor_t)md4_hasher_create);
@@ -46,9 +44,15 @@ static void destroy(private_md4_plugin_t *this)
*/
plugin_t *md4_plugin_create()
{
- private_md4_plugin_t *this = malloc_thing(private_md4_plugin_t);
-
- this->public.plugin.destroy = (void(*)(plugin_t*))destroy;
+ private_md4_plugin_t *this;
+
+ INIT(this,
+ .public = {
+ .plugin = {
+ .destroy = _destroy,
+ },
+ },
+ );
lib->crypto->add_hasher(lib->crypto, HASH_MD4,
(hasher_constructor_t)md4_hasher_create);