libtommath/bn_mp_import.c

56 lines
1.5 KiB
C
Raw Normal View History

#include "tommath_private.h"
2013-01-22 20:29:12 +00:00
#ifdef BN_MP_IMPORT_C
2019-04-07 13:29:11 +00:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
2013-01-22 20:29:12 +00:00
/* based on gmp's mpz_import.
* see http://gmplib.org/manual/Integer-Import-and-Export.html
*/
2017-08-30 17:07:12 +00:00
int mp_import(mp_int *rop, size_t count, int order, size_t size,
int endian, size_t nails, const void *op)
{
2017-08-30 03:52:16 +00:00
int result;
size_t odd_nails, nail_bytes, i, j;
unsigned char odd_nail_mask;
2013-01-22 20:29:12 +00:00
2017-08-30 03:52:16 +00:00
mp_zero(rop);
2013-01-22 20:29:12 +00:00
2017-08-30 03:52:16 +00:00
if (endian == 0) {
union {
unsigned int i;
char c[4];
} lint;
lint.i = 0x01020304;
2017-08-30 03:51:11 +00:00
2017-10-15 17:57:12 +00:00
endian = (lint.c[0] == '\x04') ? -1 : 1;
2017-08-30 03:52:16 +00:00
}
2013-01-22 20:29:12 +00:00
2017-10-15 17:57:12 +00:00
odd_nails = (nails % 8u);
2017-08-30 03:52:16 +00:00
odd_nail_mask = 0xff;
for (i = 0; i < odd_nails; ++i) {
2017-10-15 17:57:12 +00:00
odd_nail_mask ^= (unsigned char)(1u << (7u - i));
2017-08-30 03:52:16 +00:00
}
2017-10-15 17:57:12 +00:00
nail_bytes = nails / 8u;
2013-01-22 20:29:12 +00:00
2017-08-30 03:52:16 +00:00
for (i = 0; i < count; ++i) {
for (j = 0; j < (size - nail_bytes); ++j) {
2019-03-22 14:34:59 +00:00
unsigned char byte = *((const unsigned char *)op +
2017-10-15 17:57:12 +00:00
(((order == 1) ? i : ((count - 1u) - i)) * size) +
((endian == 1) ? (j + nail_bytes) : (((size - 1u) - j) - nail_bytes)));
2013-01-22 20:29:12 +00:00
2017-10-15 17:57:12 +00:00
if ((result = mp_mul_2d(rop, (j == 0u) ? (int)(8u - odd_nails) : 8, rop)) != MP_OKAY) {
2017-08-30 03:52:16 +00:00
return result;
}
2013-01-22 20:29:12 +00:00
2017-10-15 17:58:35 +00:00
rop->dp[0] |= (j == 0u) ? (mp_digit)(byte & odd_nail_mask) : (mp_digit)byte;
2017-08-30 03:52:16 +00:00
rop->used += 1;
}
}
2013-01-22 20:29:12 +00:00
2017-08-30 03:52:16 +00:00
mp_clamp(rop);
2013-01-22 20:29:12 +00:00
2017-08-30 03:52:16 +00:00
return MP_OKAY;
2013-01-22 20:29:12 +00:00
}
#endif