summaryrefslogtreecommitdiff
path: root/libtommath/bn_mp_init_set.c
blob: 5068f2bf6be4b67994f94e2b8f41e7cbfd347e4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "tommath_private.h"
#ifdef BN_MP_INIT_SET_C
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */

/* initialize and set a digit */
mp_err mp_init_set(mp_int *a, mp_digit b)
{
   mp_err err;
   if ((err = mp_init(a)) != MP_OKAY) {
      return err;
   }
   mp_set(a, b);
   return err;
}
#endif