unit-tests: Remove 768 bits RSA gen test

Botan only allows RSA generating keys >= 1,024 bits, which makes
the RSA test suite fail. It is questionable whether it makes
sense to test 768 bit RSA keys anymore. They are too weak
from today's perspective anyway.
This commit is contained in:
René Korthaus 2018-07-26 11:17:07 +02:00 committed by Tobias Brunner
parent af26cc4d85
commit 04ecaff6a9

View File

@ -146,7 +146,7 @@ static void test_bad_sigs(public_key_t *pubkey)
* RSA key sizes to test
*/
static int key_sizes[] = {
768, 1024, 1536, 2048, 3072, 4096,
1024, 1536, 2048, 3072, 4096,
};
START_TEST(test_gen)