mpi.h 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /* mpi.h - Multi Precision Integers
  2. * Copyright (C) 1994, 1996, 1998, 1999,
  3. * 2000, 2001 Free Software Foundation, Inc.
  4. *
  5. * This file is part of GNUPG.
  6. *
  7. * GNUPG is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * GNUPG is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  20. *
  21. * Note: This code is heavily based on the GNU MP Library.
  22. * Actually it's the same code with only minor changes in the
  23. * way the data is stored; this is to support the abstraction
  24. * of an optional secure memory allocation which may be used
  25. * to avoid revealing of sensitive data due to paging etc.
  26. * The GNU MP Library itself is published under the LGPL;
  27. * however I decided to publish this code under the plain GPL.
  28. */
  29. #ifndef G10_MPI_H
  30. #define G10_MPI_H
  31. #include <linux/types.h>
  32. #include <linux/scatterlist.h>
  33. #define BYTES_PER_MPI_LIMB (BITS_PER_LONG / 8)
  34. #define BITS_PER_MPI_LIMB BITS_PER_LONG
  35. typedef unsigned long int mpi_limb_t;
  36. typedef signed long int mpi_limb_signed_t;
  37. struct gcry_mpi {
  38. int alloced; /* array size (# of allocated limbs) */
  39. int nlimbs; /* number of valid limbs */
  40. int nbits; /* the real number of valid bits (info only) */
  41. int sign; /* indicates a negative number */
  42. unsigned flags; /* bit 0: array must be allocated in secure memory space */
  43. /* bit 1: not used */
  44. /* bit 2: the limb is a pointer to some m_alloced data */
  45. mpi_limb_t *d; /* array with the limbs */
  46. };
  47. typedef struct gcry_mpi *MPI;
  48. #define mpi_get_nlimbs(a) ((a)->nlimbs)
  49. /*-- mpiutil.c --*/
  50. MPI mpi_alloc(unsigned nlimbs);
  51. void mpi_free(MPI a);
  52. int mpi_resize(MPI a, unsigned nlimbs);
  53. /*-- mpicoder.c --*/
  54. MPI mpi_read_raw_data(const void *xbuffer, size_t nbytes);
  55. MPI mpi_read_from_buffer(const void *buffer, unsigned *ret_nread);
  56. MPI mpi_read_raw_from_sgl(struct scatterlist *sgl, unsigned int len);
  57. void *mpi_get_buffer(MPI a, unsigned *nbytes, int *sign);
  58. int mpi_read_buffer(MPI a, uint8_t *buf, unsigned buf_len, unsigned *nbytes,
  59. int *sign);
  60. int mpi_write_to_sgl(MPI a, struct scatterlist *sg, unsigned nbytes,
  61. int *sign);
  62. /*-- mpi-pow.c --*/
  63. int mpi_powm(MPI res, MPI base, MPI exp, MPI mod);
  64. /*-- mpi-cmp.c --*/
  65. int mpi_cmp_ui(MPI u, ulong v);
  66. int mpi_cmp(MPI u, MPI v);
  67. /*-- mpi-bit.c --*/
  68. void mpi_normalize(MPI a);
  69. unsigned mpi_get_nbits(MPI a);
  70. /* inline functions */
  71. /**
  72. * mpi_get_size() - returns max size required to store the number
  73. *
  74. * @a: A multi precision integer for which we want to allocate a bufer
  75. *
  76. * Return: size required to store the number
  77. */
  78. static inline unsigned int mpi_get_size(MPI a)
  79. {
  80. return a->nlimbs * BYTES_PER_MPI_LIMB;
  81. }
  82. #endif /*G10_MPI_H */