blob: 7cd1473c64a4583307c6bd0f032910d39f7bb309 [file] [log] [blame]
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +03001/* 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
30#ifndef G10_MPI_H
31#define G10_MPI_H
32
33#include <linux/types.h>
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -070034#include <linux/scatterlist.h>
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +030035
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +030036#define BYTES_PER_MPI_LIMB (BITS_PER_LONG / 8)
37#define BITS_PER_MPI_LIMB BITS_PER_LONG
38
39typedef unsigned long int mpi_limb_t;
40typedef signed long int mpi_limb_signed_t;
41
42struct gcry_mpi {
43 int alloced; /* array size (# of allocated limbs) */
44 int nlimbs; /* number of valid limbs */
45 int nbits; /* the real number of valid bits (info only) */
46 int sign; /* indicates a negative number */
47 unsigned flags; /* bit 0: array must be allocated in secure memory space */
48 /* bit 1: not used */
49 /* bit 2: the limb is a pointer to some m_alloced data */
50 mpi_limb_t *d; /* array with the limbs */
51};
52
53typedef struct gcry_mpi *MPI;
54
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +030055#define mpi_get_nlimbs(a) ((a)->nlimbs)
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +030056
57/*-- mpiutil.c --*/
58MPI mpi_alloc(unsigned nlimbs);
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +030059void mpi_free(MPI a);
60int mpi_resize(MPI a, unsigned nlimbs);
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +030061
62/*-- mpicoder.c --*/
David Howellse1045992012-09-24 17:11:27 +010063MPI mpi_read_raw_data(const void *xbuffer, size_t nbytes);
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +030064MPI mpi_read_from_buffer(const void *buffer, unsigned *ret_nread);
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -070065MPI mpi_read_raw_from_sgl(struct scatterlist *sgl, unsigned int len);
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +030066void *mpi_get_buffer(MPI a, unsigned *nbytes, int *sign);
Tadeusz Strukd37e2962015-06-15 13:18:36 -070067int mpi_read_buffer(MPI a, uint8_t *buf, unsigned buf_len, unsigned *nbytes,
68 int *sign);
Herbert Xu9b45b7b2016-06-29 19:32:21 +080069int mpi_write_to_sgl(MPI a, struct scatterlist *sg, unsigned nbytes,
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -070070 int *sign);
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +030071
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +030072/*-- mpi-pow.c --*/
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +030073int mpi_powm(MPI res, MPI base, MPI exp, MPI mod);
74
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +030075/*-- mpi-cmp.c --*/
76int mpi_cmp_ui(MPI u, ulong v);
77int mpi_cmp(MPI u, MPI v);
78
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +030079/*-- mpi-bit.c --*/
80void mpi_normalize(MPI a);
81unsigned mpi_get_nbits(MPI a);
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +030082
Tadeusz Strukd37e2962015-06-15 13:18:36 -070083/* inline functions */
84
85/**
86 * mpi_get_size() - returns max size required to store the number
87 *
88 * @a: A multi precision integer for which we want to allocate a bufer
89 *
90 * Return: size required to store the number
91 */
92static inline unsigned int mpi_get_size(MPI a)
93{
94 return a->nlimbs * BYTES_PER_MPI_LIMB;
95}
Dmitry Kasatkin5ce3e312011-08-31 14:05:16 +030096#endif /*G10_MPI_H */