renamed ENCR_TWOFISH and ENCR_SERPENT to ENCR_TWOFISH_CBC and ENCR_SERPENT_CBC, respectively
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user