1 /* mpiutil.ac - Utility functions for MPI
2 * Copyright (C) 1998, 1999 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
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.
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.
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
21 #include "mpi-internal.h"
24 * Note: It was a bad idea to use the number of limbs to allocate
25 * because on a alpha the limbs are large but we normally need
26 * integers of n bits - So we should chnage this to bits (or bytes).
28 * But mpi_alloc is used in a lot of places :-)
30 MPI
mpi_alloc(unsigned nlimbs
)
34 a
= kmalloc(sizeof *a
, GFP_KERNEL
);
39 a
->d
= mpi_alloc_limb_space(nlimbs
);
55 EXPORT_SYMBOL_GPL(mpi_alloc
);
57 mpi_ptr_t
mpi_alloc_limb_space(unsigned nlimbs
)
59 size_t len
= nlimbs
* sizeof(mpi_limb_t
);
61 return kmalloc(len
, GFP_KERNEL
);
64 void mpi_free_limb_space(mpi_ptr_t a
)
72 void mpi_assign_limb_space(MPI a
, mpi_ptr_t ap
, unsigned nlimbs
)
74 mpi_free_limb_space(a
->d
);
80 * Resize the array of A to NLIMBS. the additional space is cleared
81 * (set to 0) [done by m_realloc()]
83 int mpi_resize(MPI a
, unsigned nlimbs
)
87 if (nlimbs
<= a
->alloced
)
88 return 0; /* no need to do it */
91 p
= kmalloc(nlimbs
* sizeof(mpi_limb_t
), GFP_KERNEL
);
94 memcpy(p
, a
->d
, a
->alloced
* sizeof(mpi_limb_t
));
98 a
->d
= kzalloc(nlimbs
* sizeof(mpi_limb_t
), GFP_KERNEL
);
106 void mpi_clear(MPI a
)
121 mpi_free_limb_space(a
->d
);
124 pr_info("invalid flag value in mpi\n");
127 EXPORT_SYMBOL_GPL(mpi_free
);
130 * Note: This copy function should not interpret the MPI
131 * but copy it transparently.
133 int mpi_copy(MPI
*copied
, const MPI a
)
141 b
= mpi_alloc(a
->nlimbs
);
145 b
->nlimbs
= a
->nlimbs
;
150 for (i
= 0; i
< b
->nlimbs
; i
++)
159 int mpi_set(MPI w
, const MPI u
)
162 mpi_size_t usize
= u
->nlimbs
;
165 if (RESIZE_IF_NEEDED(w
, (size_t) usize
) < 0)
170 MPN_COPY(wp
, up
, usize
);
178 int mpi_set_ui(MPI w
, unsigned long u
)
180 if (RESIZE_IF_NEEDED(w
, 1) < 0)
183 w
->nlimbs
= u
? 1 : 0;
190 MPI
mpi_alloc_set_ui(unsigned long u
)
192 MPI w
= mpi_alloc(1);
196 w
->nlimbs
= u
? 1 : 0;
201 void mpi_swap(MPI a
, MPI b
)