Adjusted API compliacnce for MP_8BIT in mp_prime_is_prime

This commit is contained in:
czurnieden 2018-05-05 03:38:23 +02:00 committed by Steffen Jaeckel
parent a2e15e2d10
commit 63dc065dc8
1 changed files with 3 additions and 1 deletions

View File

@ -112,7 +112,9 @@ int mp_prime_is_prime(const mp_int *a, int t, int *result)
#ifdef MP_8BIT
t = 8;
if(t >= 0 && t < 8) {
t = 8;
}
#else
// switched off, failed a test, said 2^1119 + 53 (a cert. prime) is not prime
#ifdef LTM_USE_STRONG_LUCAS_SELFRIDGE_TEST