renamed ENCR_TWOFISH and ENCR_SERPENT to ENCR_TWOFISH_CBC and ENCR_SERPENT_CBC, respectively

This commit is contained in:
Andreas Steffen
2009-05-14 13:55:56 +02:00
parent 24400cf617
commit 0a8ad227d4
4 changed files with 8 additions and 8 deletions
@@ -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;
@@ -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;