unit-tests: Completed coverage of hasher, crypter and libnttfft

This commit is contained in:
Andreas Steffen
2016-12-14 11:15:48 +01:00
committed by Tobias Brunner
parent 94ae1ac18e
commit e9c2b6658b
3 changed files with 57 additions and 34 deletions
@@ -36,7 +36,8 @@ static crypter_oid_t oids[] = {
{ OID_AES256_CBC, ENCR_AES_CBC, 256 },
{ OID_CAMELLIA128_CBC, ENCR_CAMELLIA_CBC, 128 },
{ OID_CAMELLIA192_CBC, ENCR_CAMELLIA_CBC, 192 },
{ OID_CAMELLIA256_CBC, ENCR_CAMELLIA_CBC, 256 }
{ OID_CAMELLIA256_CBC, ENCR_CAMELLIA_CBC, 256 },
{ OID_BLOWFISH_CBC, ENCR_BLOWFISH, 0 }
};
START_TEST(test_crypter_from_oid)