mpi-bit.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* mpi-bit.c - MPI bit level fucntions
  2. * Copyright (C) 1998, 1999 Free Software Foundation, Inc.
  3. *
  4. * This file is part of GnuPG.
  5. *
  6. * GnuPG is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * GnuPG is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  19. */
  20. #include "mpi-internal.h"
  21. #include "longlong.h"
  22. #define A_LIMB_1 ((mpi_limb_t) 1)
  23. /****************
  24. * Sometimes we have MSL (most significant limbs) which are 0;
  25. * this is for some reasons not good, so this function removes them.
  26. */
  27. void mpi_normalize(MPI a)
  28. {
  29. for (; a->nlimbs && !a->d[a->nlimbs - 1]; a->nlimbs--)
  30. ;
  31. }
  32. /****************
  33. * Return the number of bits in A.
  34. */
  35. unsigned mpi_get_nbits(MPI a)
  36. {
  37. unsigned n;
  38. mpi_normalize(a);
  39. if (a->nlimbs) {
  40. mpi_limb_t alimb = a->d[a->nlimbs - 1];
  41. if (alimb)
  42. n = count_leading_zeros(alimb);
  43. else
  44. n = BITS_PER_MPI_LIMB;
  45. n = BITS_PER_MPI_LIMB - n + (a->nlimbs - 1) * BITS_PER_MPI_LIMB;
  46. } else
  47. n = 0;
  48. return n;
  49. }
  50. EXPORT_SYMBOL_GPL(mpi_get_nbits);