adding MD4 and DES (ECB) to openssl plugin

This commit is contained in:
Tobias Brunner
2009-02-18 19:41:33 +00:00
parent d2ac1443d3
commit b8fa437fb7
3 changed files with 9 additions and 1 deletions
@@ -224,6 +224,9 @@ openssl_crypter_t *openssl_crypter_create(encryption_algorithm_t algo,
return NULL;
}
break;
case ENCR_DES_ECB:
this->cipher = EVP_des_ecb();
break;
default:
{
char* name = lookup_algorithm(encryption_algs, algo, &key_size);