mirror of
https://github.com/strongswan/strongswan.git
synced 2025-12-06 00:00:10 -05:00
Migrated md5_plugin_t to INIT/METHOD macros
This commit is contained in:
parent
1e84aa74aa
commit
e5e79bd403
@ -31,10 +31,8 @@ struct private_md5_plugin_t {
|
|||||||
md5_plugin_t public;
|
md5_plugin_t public;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
METHOD(plugin_t, destroy, void,
|
||||||
* Implementation of md5_plugin_t.destroy
|
private_md5_plugin_t *this)
|
||||||
*/
|
|
||||||
static void destroy(private_md5_plugin_t *this)
|
|
||||||
{
|
{
|
||||||
lib->crypto->remove_hasher(lib->crypto,
|
lib->crypto->remove_hasher(lib->crypto,
|
||||||
(hasher_constructor_t)md5_hasher_create);
|
(hasher_constructor_t)md5_hasher_create);
|
||||||
@ -46,9 +44,15 @@ static void destroy(private_md5_plugin_t *this)
|
|||||||
*/
|
*/
|
||||||
plugin_t *md5_plugin_create()
|
plugin_t *md5_plugin_create()
|
||||||
{
|
{
|
||||||
private_md5_plugin_t *this = malloc_thing(private_md5_plugin_t);
|
private_md5_plugin_t *this;
|
||||||
|
|
||||||
this->public.plugin.destroy = (void(*)(plugin_t*))destroy;
|
INIT(this,
|
||||||
|
.public = {
|
||||||
|
.plugin = {
|
||||||
|
.destroy = _destroy,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
lib->crypto->add_hasher(lib->crypto, HASH_MD5,
|
lib->crypto->add_hasher(lib->crypto, HASH_MD5,
|
||||||
(hasher_constructor_t)md5_hasher_create);
|
(hasher_constructor_t)md5_hasher_create);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user