3 /* LibTomMath, multiple-precision integer library -- Tom St Denis
5 * LibTomMath is a library that provides multiple-precision
6 * integer arithmetic as well as number theoretic functionality.
8 * The library was designed directly after the MPI library by
9 * Michael Fromberger but has been written from scratch with
10 * additional optimizations in place.
12 * The library is free for all purposes without any express
15 * Tom St Denis, tomstdenis@gmail.com, http://math.libtomcrypt.com
18 static const int lnz
[16] = {
19 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0
22 /* Counts the number of lsbs which are zero before the first zero bit */
23 int mp_cnt_lsb(mp_int
*a
)
29 if (mp_iszero(a
) == 1) {
33 /* scan lower digits until non-zero */
34 for (x
= 0; x
< a
->used
&& a
->dp
[x
] == 0; x
++);
38 /* now scan this digit until a 1 is found */
51 /* $Source: /cvs/libtom/libtommath/bn_mp_cnt_lsb.c,v $ */
52 /* $Revision: 1.3 $ */
53 /* $Date: 2006/03/31 14:18:44 $ */