- 295FF95B636878675CDC74B113EE282AFB19CABCAE79FDA85E80DE853604148265E1D150697EAA9AA727B02BC4ACE33D98C2242FA4122107CD3F5B0DBF3B6BB8
+ D86FF3ED23FF796D0C35B550F60142DD5A7242343DCAE7CA74558C30B5FEC1749AAF6A0207F4BF39DF464BCC60FF37A6495965D3E7DAD5AD70C0AEB7A7C2A46C
eucrypt/mpi/include/mpi.h
(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);