diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-08-05 22:46:53 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-08-05 22:46:53 +0200 |
commit | 994b80b513c354b3ad5318856112c717ea51f694 (patch) | |
tree | bd2155737e218292aed1c2af311fbd3411185f26 /src/libstrongswan/plugins/openssl/openssl_plugin.c | |
parent | b6f739c13b972b8468bea1e919426dce8a65cdc3 (diff) | |
download | strongswan-994b80b513c354b3ad5318856112c717ea51f694.tar.bz2 strongswan-994b80b513c354b3ad5318856112c717ea51f694.tar.xz |
activated CAMELLIA_CBC cipher in openssl plugin
Diffstat (limited to 'src/libstrongswan/plugins/openssl/openssl_plugin.c')
-rw-r--r-- | src/libstrongswan/plugins/openssl/openssl_plugin.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstrongswan/plugins/openssl/openssl_plugin.c b/src/libstrongswan/plugins/openssl/openssl_plugin.c index c35dbccf8..6407f4289 100644 --- a/src/libstrongswan/plugins/openssl/openssl_plugin.c +++ b/src/libstrongswan/plugins/openssl/openssl_plugin.c @@ -212,6 +212,8 @@ plugin_t *plugin_create() /* crypter */ lib->crypto->add_crypter(lib->crypto, ENCR_AES_CBC, (crypter_constructor_t)openssl_crypter_create); + lib->crypto->add_crypter(lib->crypto, ENCR_CAMELLIA_CBC, + (crypter_constructor_t)openssl_crypter_create); lib->crypto->add_crypter(lib->crypto, ENCR_3DES, (crypter_constructor_t)openssl_crypter_create); lib->crypto->add_crypter(lib->crypto, ENCR_RC5, |