2018-05-02 15:43:17 -04:00
|
|
|
#include "tommath_private.h"
|
2013-01-22 15:29:12 -05:00
|
|
|
#ifdef BN_MP_IMPORT_C
|
|
|
|
/* LibTomMath, multiple-precision integer library -- Tom St Denis
|
|
|
|
*
|
|
|
|
* LibTomMath is a library that provides multiple-precision
|
|
|
|
* integer arithmetic as well as number theoretic functionality.
|
|
|
|
*
|
|
|
|
* The library was designed directly after the MPI library by
|
|
|
|
* Michael Fromberger but has been written from scratch with
|
|
|
|
* additional optimizations in place.
|
|
|
|
*
|
|
|
|
* The library is free for all purposes without any express
|
|
|
|
* guarantee it works.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* based on gmp's mpz_import.
|
|
|
|
* see http://gmplib.org/manual/Integer-Import-and-Export.html
|
|
|
|
*/
|
2017-08-30 13:07:12 -04: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-29 23:52:16 -04:00
|
|
|
int result;
|
|
|
|
size_t odd_nails, nail_bytes, i, j;
|
|
|
|
unsigned char odd_nail_mask;
|
2013-01-22 15:29:12 -05:00
|
|
|
|
2017-08-29 23:52:16 -04:00
|
|
|
mp_zero(rop);
|
2013-01-22 15:29:12 -05:00
|
|
|
|
2017-08-29 23:52:16 -04:00
|
|
|
if (endian == 0) {
|
|
|
|
union {
|
|
|
|
unsigned int i;
|
|
|
|
char c[4];
|
|
|
|
} lint;
|
|
|
|
lint.i = 0x01020304;
|
2017-08-29 23:51:11 -04:00
|
|
|
|
2017-10-15 13:57:12 -04:00
|
|
|
endian = (lint.c[0] == '\x04') ? -1 : 1;
|
2017-08-29 23:52:16 -04:00
|
|
|
}
|
2013-01-22 15:29:12 -05:00
|
|
|
|
2017-10-15 13:57:12 -04:00
|
|
|
odd_nails = (nails % 8u);
|
2017-08-29 23:52:16 -04:00
|
|
|
odd_nail_mask = 0xff;
|
|
|
|
for (i = 0; i < odd_nails; ++i) {
|
2017-10-15 13:57:12 -04:00
|
|
|
odd_nail_mask ^= (unsigned char)(1u << (7u - i));
|
2017-08-29 23:52:16 -04:00
|
|
|
}
|
2017-10-15 13:57:12 -04:00
|
|
|
nail_bytes = nails / 8u;
|
2013-01-22 15:29:12 -05:00
|
|
|
|
2017-08-29 23:52:16 -04:00
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
for (j = 0; j < (size - nail_bytes); ++j) {
|
2017-08-30 13:03:58 -04:00
|
|
|
unsigned char byte = *((unsigned char *)op +
|
2017-10-15 13:57:12 -04:00
|
|
|
(((order == 1) ? i : ((count - 1u) - i)) * size) +
|
|
|
|
((endian == 1) ? (j + nail_bytes) : (((size - 1u) - j) - nail_bytes)));
|
2013-01-22 15:29:12 -05:00
|
|
|
|
2017-10-15 13:57:12 -04:00
|
|
|
if ((result = mp_mul_2d(rop, (j == 0u) ? (int)(8u - odd_nails) : 8, rop)) != MP_OKAY) {
|
2017-08-29 23:52:16 -04:00
|
|
|
return result;
|
|
|
|
}
|
2013-01-22 15:29:12 -05:00
|
|
|
|
2017-10-15 13:58:35 -04:00
|
|
|
rop->dp[0] |= (j == 0u) ? (mp_digit)(byte & odd_nail_mask) : (mp_digit)byte;
|
2017-08-29 23:52:16 -04:00
|
|
|
rop->used += 1;
|
|
|
|
}
|
|
|
|
}
|
2013-01-22 15:29:12 -05:00
|
|
|
|
2017-08-29 23:52:16 -04:00
|
|
|
mp_clamp(rop);
|
2013-01-22 15:29:12 -05:00
|
|
|
|
2017-08-29 23:52:16 -04:00
|
|
|
return MP_OKAY;
|
2013-01-22 15:29:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2017-08-28 10:27:26 -04:00
|
|
|
/* ref: $Format:%D$ */
|
|
|
|
/* git commit: $Format:%H$ */
|
|
|
|
/* commit time: $Format:%ai$ */
|