]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
Add features support to aes plugin
authorMartin Willi <martin@revosec.ch>
Thu, 19 May 2011 15:58:21 +0000 (17:58 +0200)
committerMartin Willi <martin@revosec.ch>
Fri, 14 Oct 2011 08:05:45 +0000 (10:05 +0200)
src/libstrongswan/plugins/aes/aes_plugin.c

index d17355d1d80f4ce4e0671e4ccbf64f206e193f3b..1e84a7c86c9d37f72e3abef5051bc2641d7fe1cd 100644 (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;
 }