(1 . 5)(1 . 6)
5 /* mpi.h - Multi Precision Integers
6 * Modified by No Such Labs. (C) 2015. See README.
7 * Modified by S.MG, 2018. Added mpi_get_alloced, function for retrieving currently allocated number of limbs.
8 *
9 * This file was originally part of Gnu Privacy Guard (GPG), ver. 1.4.10,
10 * SHA256(gnupg-1.4.10.tar.gz):
(75 . 6)(76 . 7)
12 void mpi_m_check( MPI a );
13 void mpi_swap( MPI a, MPI b);
14 int mpi_get_nlimbs (MPI a);
15 int mpi_get_alloced (MPI a); /* returns the allocated memory space for this MPI, in number of limbs */
16 int mpi_is_neg (MPI a);
17 unsigned int mpi_nlimb_hint_from_nbytes (unsigned int nbytes);
18 unsigned int mpi_nlimb_hint_from_nbits (unsigned int nbits);