disable crypto algorithm if no key size is supported

This commit is contained in:
Andreas Steffen
2010-12-25 16:11:50 +01:00
parent c6a043fad0
commit d733a3babb
+27 -8
View File
@@ -192,6 +192,7 @@ METHOD(crypto_tester_t, test_crypter, bool,
DBG1(DBG_LIB, "%N[%s]: %u bit key size not supported", DBG1(DBG_LIB, "%N[%s]: %u bit key size not supported",
encryption_algorithm_names, alg, plugin_name, encryption_algorithm_names, alg, plugin_name,
BITS_PER_BYTE * vector->key_size); BITS_PER_BYTE * vector->key_size);
failed = TRUE;
continue; continue;
} }
@@ -242,10 +243,19 @@ METHOD(crypto_tester_t, test_crypter, bool,
enumerator->destroy(enumerator); enumerator->destroy(enumerator);
if (!tested) if (!tested)
{ {
DBG1(DBG_LIB, "%s %N[%s]: no test vectors found", if (failed)
this->required ? "disabled" : "enabled ", {
encryption_algorithm_names, alg, plugin_name); DBG1(DBG_LIB,"disable %N[%s]: no key size supported",
return !this->required; encryption_algorithm_names, alg, plugin_name);
return FALSE;
}
else
{
DBG1(DBG_LIB, "%s %N[%s]: no test vectors found",
this->required ? "disabled" : "enabled ",
encryption_algorithm_names, alg, plugin_name);
return !this->required;
}
} }
if (!failed) if (!failed)
{ {
@@ -402,10 +412,19 @@ METHOD(crypto_tester_t, test_aead, bool,
enumerator->destroy(enumerator); enumerator->destroy(enumerator);
if (!tested) if (!tested)
{ {
DBG1(DBG_LIB, "%s %N[%s]: no test vectors found", if (failed)
this->required ? "disabled" : "enabled ", {
encryption_algorithm_names, alg, plugin_name); DBG1(DBG_LIB,"disable %N[%s]: no key size supported",
return !this->required; encryption_algorithm_names, alg, plugin_name);
return FALSE;
}
else
{
DBG1(DBG_LIB, "%s %N[%s]: no test vectors found",
this->required ? "disabled" : "enabled ",
encryption_algorithm_names, alg, plugin_name);
return !this->required;
}
} }
if (!failed) if (!failed)
{ {