check counter value against 4 * L, not 4096
This commit is contained in:
parent
6ecd287acc
commit
7dcdc0d94d
1 changed files with 1 additions and 1 deletions
|
@ -666,7 +666,7 @@ int dsa_builtin_paramgen2(DSA *ret, size_t L, size_t N,
|
|||
/* "offset = offset + n + 1" */
|
||||
|
||||
/* step 14 */
|
||||
if (counter >= 4096) break;
|
||||
if (counter >= (int)(4 * L)) break;
|
||||
}
|
||||
}
|
||||
end:
|
||||
|
|
Loading…
Reference in a new issue