Migrated md4_plugin_t to INIT/METHOD macros

This commit is contained in:
Andreas Steffen 2010-12-04 20:45:49 +01:00
parent e5e79bd403
commit c7b778450e
1 changed files with 10 additions and 6 deletions

View File

@ -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);
private_md4_plugin_t *this;
this->public.plugin.destroy = (void(*)(plugin_t*))destroy;
INIT(this,
.public = {
.plugin = {
.destroy = _destroy,
},
},
);
lib->crypto->add_hasher(lib->crypto, HASH_MD4,
(hasher_constructor_t)md4_hasher_create);