Coverage Report

Created: 2023-06-07 06:49

/src/dropbear/libtommath/bn_mp_mod_2d.c
Line
Count
Source (jump to first uncovered line)
1
#include "tommath_private.h"
2
#ifdef BN_MP_MOD_2D_C
3
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
4
/* SPDX-License-Identifier: Unlicense */
5
6
/* calc a value mod 2**b */
7
mp_err mp_mod_2d(const mp_int *a, int b, mp_int *c)
8
10.9M
{
9
10.9M
   int x;
10
10.9M
   mp_err err;
11
12
   /* if b is <= 0 then zero the int */
13
10.9M
   if (b <= 0) {
14
0
      mp_zero(c);
15
0
      return MP_OKAY;
16
0
   }
17
18
   /* if the modulus is larger than the value than return */
19
10.9M
   if (b >= (a->used * MP_DIGIT_BIT)) {
20
51.5k
      return mp_copy(a, c);
21
51.5k
   }
22
23
   /* copy */
24
10.8M
   if ((err = mp_copy(a, c)) != MP_OKAY) {
25
0
      return err;
26
0
   }
27
28
   /* zero digits above the last digit of the modulus */
29
10.8M
   x = (b / MP_DIGIT_BIT) + (((b % MP_DIGIT_BIT) == 0) ? 0 : 1);
30
10.8M
   MP_ZERO_DIGITS(c->dp + x, c->used - x);
31
32
   /* clear the digit that is not completely outside/inside the modulus */
33
10.8M
   c->dp[b / MP_DIGIT_BIT] &=
34
10.8M
      ((mp_digit)1 << (mp_digit)(b % MP_DIGIT_BIT)) - (mp_digit)1;
35
10.8M
   mp_clamp(c);
36
10.8M
   return MP_OKAY;
37
10.8M
}
38
#endif