Migrated sha1_plugin_t to INIT/METHOD macros
This commit is contained in:
@@ -32,10 +32,8 @@ struct private_sha1_plugin_t {
|
|||||||
sha1_plugin_t public;
|
sha1_plugin_t public;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
METHOD(plugin_t, destroy, void,
|
||||||
* Implementation of sha1_plugin_t.destroy
|
private_sha1_plugin_t *this)
|
||||||
*/
|
|
||||||
static void destroy(private_sha1_plugin_t *this)
|
|
||||||
{
|
{
|
||||||
lib->crypto->remove_hasher(lib->crypto,
|
lib->crypto->remove_hasher(lib->crypto,
|
||||||
(hasher_constructor_t)sha1_hasher_create);
|
(hasher_constructor_t)sha1_hasher_create);
|
||||||
@@ -49,9 +47,15 @@ static void destroy(private_sha1_plugin_t *this)
|
|||||||
*/
|
*/
|
||||||
plugin_t *sha1_plugin_create()
|
plugin_t *sha1_plugin_create()
|
||||||
{
|
{
|
||||||
private_sha1_plugin_t *this = malloc_thing(private_sha1_plugin_t);
|
private_sha1_plugin_t *this;
|
||||||
|
|
||||||
this->public.plugin.destroy = (void(*)(plugin_t*))destroy;
|
INIT(this,
|
||||||
|
.public = {
|
||||||
|
.plugin = {
|
||||||
|
.destroy = _destroy,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
lib->crypto->add_hasher(lib->crypto, HASH_SHA1,
|
lib->crypto->add_hasher(lib->crypto, HASH_SHA1,
|
||||||
(hasher_constructor_t)sha1_hasher_create);
|
(hasher_constructor_t)sha1_hasher_create);
|
||||||
|
|||||||
Reference in New Issue
Block a user