Skip to content

Commit

Permalink
dsa_test less tests (too long for CI)
Browse files Browse the repository at this point in the history
  • Loading branch information
karel-m committed Apr 12, 2021
1 parent d100a06 commit 2e6d047
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/dsa_test.c
Expand Up @@ -301,9 +301,9 @@ static int s_dsa_wycheproof_test(void)
static int s_dsa_gen_test(void)
{
dsa_key key;
int sizes[4][2] = { { 20, 128 }, {30, 256 }, {35, 384 }, { 40, 512 } };
int sizes[2][2] = { { 20, 128 }, { 40, 512 } };
int i;
for (i = 0; i < 4; i++) {
for (i = 0; i < 2; i++) {
DO(dsa_generate_pqg(&yarrow_prng, find_prng("yarrow"), sizes[i][0], sizes[i][1], &key));
DO(dsa_generate_key(&yarrow_prng, find_prng("yarrow"), &key));
dsa_free(&key);
Expand Down

0 comments on commit 2e6d047

Please sign in to comment.