1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-30 19:28:10 +00:00
simplesshd/dropbear/libtommath/bn_mp_dr_is_modulus.c

28 lines
610 B
C
Raw Normal View History

2020-12-28 21:40:37 +00:00
#include "tommath_private.h"
2014-12-10 21:56:49 +00:00
#ifdef BN_MP_DR_IS_MODULUS_C
2020-12-28 21:40:37 +00:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
2014-12-10 21:56:49 +00:00
/* determines if a number is a valid DR modulus */
2020-12-28 21:40:37 +00:00
mp_bool mp_dr_is_modulus(const mp_int *a)
2014-12-10 21:56:49 +00:00
{
int ix;
/* must be at least two digits */
if (a->used < 2) {
2020-12-28 21:40:37 +00:00
return MP_NO;
2014-12-10 21:56:49 +00:00
}
/* must be of the form b**k - a [a <= b] so all
* but the first digit must be equal to -1 (mod b).
*/
for (ix = 1; ix < a->used; ix++) {
2020-12-28 21:40:37 +00:00
if (a->dp[ix] != MP_MASK) {
return MP_NO;
}
2014-12-10 21:56:49 +00:00
}
2020-12-28 21:40:37 +00:00
return MP_YES;
2014-12-10 21:56:49 +00:00
}
#endif