diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-05-14 13:55:10 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-05-14 13:55:56 +0200 |
commit | 0a8ad227d41243846a3e396614cb06d2048d6bf3 (patch) | |
tree | 66fb090416750ac9f449bd22f04c64b1a7655f3d /src/libstrongswan/plugins | |
parent | 24400cf617ac8c0ade033de6d4de8c41fbf2a8c0 (diff) | |
download | strongswan-0a8ad227d41243846a3e396614cb06d2048d6bf3.tar.bz2 strongswan-0a8ad227d41243846a3e396614cb06d2048d6bf3.tar.xz |
renamed ENCR_TWOFISH and ENCR_SERPENT to ENCR_TWOFISH_CBC and ENCR_SERPENT_CBC, respectively
Diffstat (limited to 'src/libstrongswan/plugins')
-rw-r--r-- | src/libstrongswan/plugins/serpent/serpent_plugin.c | 2 | ||||
-rw-r--r-- | src/libstrongswan/plugins/twofish/twofish_plugin.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libstrongswan/plugins/serpent/serpent_plugin.c b/src/libstrongswan/plugins/serpent/serpent_plugin.c index 19fcc2021..2f279bd20 100644 --- a/src/libstrongswan/plugins/serpent/serpent_plugin.c +++ b/src/libstrongswan/plugins/serpent/serpent_plugin.c @@ -51,7 +51,7 @@ plugin_t *plugin_create() this->public.plugin.destroy = (void(*)(plugin_t*))destroy; - lib->crypto->add_crypter(lib->crypto, ENCR_SERPENT, + lib->crypto->add_crypter(lib->crypto, ENCR_SERPENT_CBC, (crypter_constructor_t)serpent_crypter_create); return &this->public.plugin; diff --git a/src/libstrongswan/plugins/twofish/twofish_plugin.c b/src/libstrongswan/plugins/twofish/twofish_plugin.c index 49fb18dcd..624405971 100644 --- a/src/libstrongswan/plugins/twofish/twofish_plugin.c +++ b/src/libstrongswan/plugins/twofish/twofish_plugin.c @@ -51,7 +51,7 @@ plugin_t *plugin_create() this->public.plugin.destroy = (void(*)(plugin_t*))destroy; - lib->crypto->add_crypter(lib->crypto, ENCR_TWOFISH, + lib->crypto->add_crypter(lib->crypto, ENCR_TWOFISH_CBC, (crypter_constructor_t)twofish_crypter_create); return &this->public.plugin; |