2018-05-02 19:43:17 +00:00
|
|
|
#include "tommath_private.h"
|
2004-10-29 22:07:18 +00:00
|
|
|
#ifdef BN_MP_RADIX_SIZE_C
|
2019-04-07 13:29:11 +00:00
|
|
|
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
|
|
|
|
/* SPDX-License-Identifier: Unlicense */
|
2003-08-05 01:24:44 +00:00
|
|
|
|
|
|
|
/* returns size of ASCII reprensentation */
|
2019-05-12 22:22:18 +00:00
|
|
|
mp_err mp_radix_size(const mp_int *a, int radix, int *size)
|
2003-08-05 01:24:44 +00:00
|
|
|
{
|
2019-05-19 15:16:13 +00:00
|
|
|
mp_err err;
|
2019-05-12 22:22:18 +00:00
|
|
|
int digs;
|
|
|
|
mp_int t;
|
2017-08-30 17:13:53 +00:00
|
|
|
mp_digit d;
|
2003-08-05 01:24:44 +00:00
|
|
|
|
2017-08-30 17:13:53 +00:00
|
|
|
*size = 0;
|
2004-01-25 17:40:21 +00:00
|
|
|
|
2017-08-30 17:13:53 +00:00
|
|
|
/* make sure the radix is in range */
|
|
|
|
if ((radix < 2) || (radix > 64)) {
|
|
|
|
return MP_VAL;
|
|
|
|
}
|
2003-08-05 01:24:44 +00:00
|
|
|
|
2019-04-09 09:08:26 +00:00
|
|
|
if (MP_IS_ZERO(a)) {
|
2017-08-30 17:13:53 +00:00
|
|
|
*size = 2;
|
|
|
|
return MP_OKAY;
|
|
|
|
}
|
2003-08-05 01:24:44 +00:00
|
|
|
|
2017-08-30 17:13:53 +00:00
|
|
|
/* special case for binary */
|
|
|
|
if (radix == 2) {
|
|
|
|
*size = mp_count_bits(a) + ((a->sign == MP_NEG) ? 1 : 0) + 1;
|
|
|
|
return MP_OKAY;
|
|
|
|
}
|
2012-05-11 17:40:32 +00:00
|
|
|
|
2017-08-30 17:13:53 +00:00
|
|
|
/* digs is the digit count */
|
|
|
|
digs = 0;
|
2003-12-24 18:59:22 +00:00
|
|
|
|
2017-08-30 17:13:53 +00:00
|
|
|
/* if it's negative add one for the sign */
|
|
|
|
if (a->sign == MP_NEG) {
|
|
|
|
++digs;
|
|
|
|
}
|
2003-08-05 01:24:44 +00:00
|
|
|
|
2017-08-30 17:13:53 +00:00
|
|
|
/* init a copy of the input */
|
2019-05-19 15:16:13 +00:00
|
|
|
if ((err = mp_init_copy(&t, a)) != MP_OKAY) {
|
|
|
|
return err;
|
2017-08-30 17:13:53 +00:00
|
|
|
}
|
2005-03-12 11:55:11 +00:00
|
|
|
|
2017-08-30 17:13:53 +00:00
|
|
|
/* force temp to positive */
|
|
|
|
t.sign = MP_ZPOS;
|
2005-03-12 11:55:11 +00:00
|
|
|
|
2017-08-30 17:13:53 +00:00
|
|
|
/* fetch out all of the digits */
|
2019-04-09 09:08:26 +00:00
|
|
|
while (!MP_IS_ZERO(&t)) {
|
2019-05-19 15:16:13 +00:00
|
|
|
if ((err = mp_div_d(&t, (mp_digit)radix, &t, &d)) != MP_OKAY) {
|
2017-08-30 17:13:53 +00:00
|
|
|
mp_clear(&t);
|
2019-05-19 15:16:13 +00:00
|
|
|
return err;
|
2017-08-30 17:13:53 +00:00
|
|
|
}
|
|
|
|
++digs;
|
|
|
|
}
|
|
|
|
mp_clear(&t);
|
2003-12-24 18:59:22 +00:00
|
|
|
|
2017-08-30 17:13:53 +00:00
|
|
|
/* return digs + 1, the 1 is for the NULL byte that would be required. */
|
|
|
|
*size = digs + 1;
|
|
|
|
return MP_OKAY;
|
2003-08-05 01:24:44 +00:00
|
|
|
}
|
|
|
|
|
2004-10-29 22:07:18 +00:00
|
|
|
#endif
|