diff options
author | Martin Willi <martin@strongswan.org> | 2008-08-28 11:07:57 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2008-08-28 11:07:57 +0000 |
commit | e577ad3985904c2e4ee71a50f4ea62e2b045e00c (patch) | |
tree | 330aa6d4fe90ffbfeb6b839e6489ff4367155042 /src/libstrongswan/plugins/des/des_plugin.c | |
parent | f1b014b9a33990d08fb16871092c2a050da77517 (diff) | |
download | strongswan-e577ad3985904c2e4ee71a50f4ea62e2b045e00c.tar.bz2 strongswan-e577ad3985904c2e4ee71a50f4ea62e2b045e00c.tar.xz |
creating default IKE proposals dynamically using algorithm enumeration API
Diffstat (limited to 'src/libstrongswan/plugins/des/des_plugin.c')
-rw-r--r-- | src/libstrongswan/plugins/des/des_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstrongswan/plugins/des/des_plugin.c b/src/libstrongswan/plugins/des/des_plugin.c index 4fb98c1d2..0dd6c1d4d 100644 --- a/src/libstrongswan/plugins/des/des_plugin.c +++ b/src/libstrongswan/plugins/des/des_plugin.c @@ -52,10 +52,10 @@ plugin_t *plugin_create() this->public.plugin.destroy = (void(*)(plugin_t*))destroy; - lib->crypto->add_crypter(lib->crypto, ENCR_DES, - (crypter_constructor_t)des_crypter_create); lib->crypto->add_crypter(lib->crypto, ENCR_3DES, (crypter_constructor_t)des_crypter_create); + lib->crypto->add_crypter(lib->crypto, ENCR_DES, + (crypter_constructor_t)des_crypter_create); return &this->public.plugin; } |