From 1b7d2e31a6218d919ab4063f922c582aace5b12a Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 25 Jun 2008 12:39:32 +0000 Subject: enabling support for hardware accelerators in OpenSSL --- src/libstrongswan/plugins/openssl/openssl_plugin.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/libstrongswan/plugins/openssl/openssl_plugin.c') diff --git a/src/libstrongswan/plugins/openssl/openssl_plugin.c b/src/libstrongswan/plugins/openssl/openssl_plugin.c index eaedcc466..a45e46a80 100644 --- a/src/libstrongswan/plugins/openssl/openssl_plugin.c +++ b/src/libstrongswan/plugins/openssl/openssl_plugin.c @@ -16,6 +16,7 @@ */ #include +#include #include "openssl_plugin.h" @@ -64,6 +65,7 @@ static void destroy(private_openssl_plugin_t *this) lib->creds->remove_builder(lib->creds, (builder_constructor_t)openssl_ec_public_key_builder); + ENGINE_cleanup(); EVP_cleanup(); free(this); @@ -80,6 +82,10 @@ plugin_t *plugin_create() OpenSSL_add_all_algorithms(); + /* activate support for hardware accelerators */ + ENGINE_load_builtin_engines(); + ENGINE_register_all_complete(); + /* crypter */ lib->crypto->add_crypter(lib->crypto, ENCR_DES, (crypter_constructor_t)openssl_crypter_create); -- cgit v1.2.3