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_setup.c

16 lines
467 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_SETUP_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 the setup value */
2020-12-28 21:40:37 +00:00
void mp_dr_setup(const mp_int *a, mp_digit *d)
2014-12-10 21:56:49 +00:00
{
2020-12-28 21:40:37 +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]
2014-12-10 21:56:49 +00:00
*/
2020-12-28 21:40:37 +00:00
*d = (mp_digit)(((mp_word)1 << (mp_word)MP_DIGIT_BIT) - (mp_word)a->dp[0]);
2014-12-10 21:56:49 +00:00
}
#endif