summaryrefslogtreecommitdiff
path: root/lib/nettle/gost/bignum-le.c
blob: 11203f05cd6d2a48c0cef4a52ba93ee5ed20eeca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* bignum.c

   Bignum operations that are missing from gmp.

   Copyright (C) 2001 Niels Möller

   This file is part of GNU Nettle.

   GNU Nettle is free software: you can redistribute it and/or
   modify it under the terms of either:

     * the GNU Lesser General Public License as published by the Free
       Software Foundation; either version 3 of the License, or (at your
       option) any later version.

   or

     * the GNU General Public License as published by the Free
       Software Foundation; either version 2 of the License, or (at your
       option) any later version.

   or both in parallel, as here.

   GNU Nettle is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   General Public License for more details.

   You should have received copies of the GNU General Public License and
   the GNU Lesser General Public License along with this program.  If
   not, see https://www.gnu.org/licenses/.
*/

#if HAVE_CONFIG_H
# include "config.h"
#endif

#include <gnutls_int.h>

#include <string.h>

#include <nettle/bignum.h>
#include "bignum-le.h"

void nettle_mpz_get_str_256_u_le(size_t length, uint8_t * s, const mpz_t x)
{
	if (!length) {
		/* x must be zero */
		assert(!mpz_sgn(x));
		return;
	}

	size_t count;

	assert(nettle_mpz_sizeinbase_256_u(x) <= length);
	mpz_export(s, &count, -1, 1, 0, 0, x);
	memset(s + count, 0, length - count);
}

#define nettle_mpz_from_octets_le(x, length, s) \
   mpz_import((x), (length), -1, 1, 0, 0, (s))

void nettle_mpz_set_str_256_u_le(mpz_t x, size_t length, const uint8_t * s)
{
	nettle_mpz_from_octets_le(x, length, s);
}

void nettle_mpz_init_set_str_256_u_le(mpz_t x, size_t length, const uint8_t * s)
{
	mpz_init(x);
	nettle_mpz_from_octets_le(x, length, s);
}