Add features support to aes plugin

This commit is contained in:
Martin Willi 2011-05-19 17:58:21 +02:00
parent 33f6b3d6d0
commit 5c630f54f0
1 changed files with 14 additions and 6 deletions

View File

@ -37,11 +37,22 @@ METHOD(plugin_t, get_name, char*,
return "aes";
}
METHOD(plugin_t, get_features, int,
private_aes_plugin_t *this, plugin_feature_t *features[])
{
static plugin_feature_t f[] = {
PLUGIN_REGISTER(CRYPTER, aes_crypter_create),
PLUGIN_PROVIDE(CRYPTER, ENCR_AES_CBC, 16),
PLUGIN_PROVIDE(CRYPTER, ENCR_AES_CBC, 24),
PLUGIN_PROVIDE(CRYPTER, ENCR_AES_CBC, 32),
};
*features = f;
return countof(f);
}
METHOD(plugin_t, destroy, void,
private_aes_plugin_t *this)
{
lib->crypto->remove_crypter(lib->crypto,
(crypter_constructor_t)aes_crypter_create);
free(this);
}
@ -56,15 +67,12 @@ plugin_t *aes_plugin_create()
.public = {
.plugin = {
.get_name = _get_name,
.reload = (void*)return_false,
.get_features = _get_features,
.destroy = _destroy,
},
},
);
lib->crypto->add_crypter(lib->crypto, ENCR_AES_CBC, get_name(this),
(crypter_constructor_t)aes_crypter_create);
return &this->public.plugin;
}