From: Tobias Brunner Date: Mon, 20 Jan 2014 14:27:09 +0000 (+0100) Subject: unit-tests: Generate RSA key with 768 bits not 786 X-Git-Tag: 5.1.2rc1~68 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d097e10249a4d74a455ee1c26b7e870cc777641;p=thirdparty%2Fstrongswan.git unit-tests: Generate RSA key with 768 bits not 786 --- diff --git a/src/libstrongswan/tests/suites/test_rsa.c b/src/libstrongswan/tests/suites/test_rsa.c index 4c75c34bcc..50c26149ef 100644 --- a/src/libstrongswan/tests/suites/test_rsa.c +++ b/src/libstrongswan/tests/suites/test_rsa.c @@ -117,7 +117,7 @@ static void test_bad_sigs(public_key_t *pubkey) * RSA key sizes to test */ static int key_sizes[] = { - 786, 1024, 1536, 2048, 3072, 4096, + 768, 1024, 1536, 2048, 3072, 4096, }; START_TEST(test_gen)