1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-15 19:48:56 +00:00
simplesshd/dropbear/libtommath/bn_mp_2expt.c

32 lines
749 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_2EXPT_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
2020-12-28 21:40:37 +00:00
/* computes a = 2**b
2014-12-10 21:56:49 +00:00
*
* Simple algorithm which zeroes the int, grows it then just sets one bit
* as required.
*/
2020-12-28 21:40:37 +00:00
mp_err mp_2expt(mp_int *a, int b)
2014-12-10 21:56:49 +00:00
{
2020-12-28 21:40:37 +00:00
mp_err err;
2014-12-10 21:56:49 +00:00
2020-12-28 21:40:37 +00:00
/* zero a as per default */
mp_zero(a);
2014-12-10 21:56:49 +00:00
2020-12-28 21:40:37 +00:00
/* grow a to accomodate the single bit */
if ((err = mp_grow(a, (b / MP_DIGIT_BIT) + 1)) != MP_OKAY) {
return err;
}
2014-12-10 21:56:49 +00:00
2020-12-28 21:40:37 +00:00
/* set the used count of where the bit will go */
a->used = (b / MP_DIGIT_BIT) + 1;
2014-12-10 21:56:49 +00:00
2020-12-28 21:40:37 +00:00
/* put the single bit in its place */
a->dp[b / MP_DIGIT_BIT] = (mp_digit)1 << (mp_digit)(b % MP_DIGIT_BIT);
2014-12-10 21:56:49 +00:00
2020-12-28 21:40:37 +00:00
return MP_OKAY;
2014-12-10 21:56:49 +00:00
}
#endif