2018-05-02 15:43:17 -04:00
|
|
|
#include "tommath_private.h"
|
2013-01-22 15:29:12 -05:00
|
|
|
#ifdef BN_MP_EXPORT_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_export.
|
|
|
|
* see http://gmplib.org/manual/Integer-Import-and-Export.html
|
|
|
|
*/
|
2017-08-30 13:07:12 -04:00
|
|
|
int mp_export(void *rop, size_t *countp, int order, size_t size,
|
2017-09-30 16:57:00 -04:00
|
|
|
int endian, size_t nails, const mp_int *op)
|
2017-08-30 13:07:12 -04:00
|
|
|
{
|
2017-08-29 23:52:16 -04:00
|
|
|
int result;
|
|
|
|
size_t odd_nails, nail_bytes, i, j, bits, count;
|
|
|
|
unsigned char odd_nail_mask;
|
|
|
|
|
|
|
|
mp_int t;
|
|
|
|
|
|
|
|
if ((result = mp_init_copy(&t, op)) != MP_OKAY) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (endian == 0) {
|
|
|
|
union {
|
|
|
|
unsigned int i;
|
|
|
|
char c[4];
|
|
|
|
} lint;
|
|
|
|
lint.i = 0x01020304;
|
|
|
|
|
2017-10-15 13:57:12 -04:00
|
|
|
endian = (lint.c[0] == '\x04') ? -1 : 1;
|
2017-08-29 23:52:16 -04: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;
|
2017-08-29 23:52:16 -04:00
|
|
|
|
2017-10-15 13:58:35 -04:00
|
|
|
bits = (size_t)mp_count_bits(&t);
|
2017-10-15 13:57:12 -04:00
|
|
|
count = (bits / ((size * 8u) - nails)) + (((bits % ((size * 8u) - nails)) != 0u) ? 1u : 0u);
|
2017-08-29 23:52:16 -04:00
|
|
|
|
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
for (j = 0; j < size; ++j) {
|
2017-08-30 13:03:58 -04:00
|
|
|
unsigned char *byte = (unsigned char *)rop +
|
2017-10-15 13:57:12 -04:00
|
|
|
(((order == -1) ? i : ((count - 1u) - i)) * size) +
|
|
|
|
((endian == -1) ? j : ((size - 1u) - j));
|
2017-08-29 23:52:16 -04:00
|
|
|
|
|
|
|
if (j >= (size - nail_bytes)) {
|
|
|
|
*byte = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-10-15 13:57:12 -04:00
|
|
|
*byte = (unsigned char)((j == ((size - nail_bytes) - 1u)) ? (t.dp[0] & odd_nail_mask) : (t.dp[0] & 0xFFuL));
|
2017-08-29 23:52:16 -04:00
|
|
|
|
2017-10-15 13:57:12 -04:00
|
|
|
if ((result = mp_div_2d(&t, (j == ((size - nail_bytes) - 1u)) ? (int)(8u - odd_nails) : 8, &t, NULL)) != MP_OKAY) {
|
2017-08-29 23:52:16 -04:00
|
|
|
mp_clear(&t);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_clear(&t);
|
|
|
|
|
|
|
|
if (countp != NULL) {
|
|
|
|
*countp = count;
|
|
|
|
}
|
|
|
|
|
|
|
|
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$ */
|