libtommath/mp_dr_setup.c

16 lines
464 B
C
Raw Normal View History

#include "tommath_private.h"
#ifdef MP_DR_SETUP_C
2019-04-07 13:29:11 +00:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
2003-08-05 01:24:44 +00:00
/* determines the setup value */
2017-09-20 14:59:43 +00:00
void mp_dr_setup(const mp_int *a, mp_digit *d)
2003-08-05 01:24:44 +00:00
{
2019-04-13 06:46:57 +00:00
/* the casts are required if MP_DIGIT_BIT is one less than
* the number of bits in a mp_digit [e.g. MP_DIGIT_BIT==31]
2003-08-05 01:24:44 +00:00
*/
2019-04-13 06:46:57 +00:00
*d = (mp_digit)(((mp_word)1 << (mp_word)MP_DIGIT_BIT) - (mp_word)a->dp[0]);
2003-08-05 01:24:44 +00:00
}
2004-10-29 22:07:18 +00:00
#endif