2018-05-02 19:43:17 +00:00
|
|
|
#include "tommath_private.h"
|
2019-10-19 14:24:39 +00:00
|
|
|
#ifdef MP_TO_RADIX_C
|
2019-04-07 13:29:11 +00:00
|
|
|
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
|
|
|
|
/* SPDX-License-Identifier: Unlicense */
|
2004-04-11 20:46:22 +00:00
|
|
|
|
2019-10-23 18:07:33 +00:00
|
|
|
/* reverse an array, used for radix code */
|
2019-11-05 19:35:19 +00:00
|
|
|
static void s_reverse(char *s, size_t len)
|
2019-10-23 18:07:33 +00:00
|
|
|
{
|
2019-10-29 17:41:25 +00:00
|
|
|
size_t ix = 0, iy = len - 1u;
|
2019-10-23 18:07:33 +00:00
|
|
|
while (ix < iy) {
|
2019-10-29 17:41:25 +00:00
|
|
|
MP_EXCH(char, s[ix], s[iy]);
|
2019-10-23 18:07:33 +00:00
|
|
|
++ix;
|
|
|
|
--iy;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-30 03:51:11 +00:00
|
|
|
/* stores a bignum as a ASCII string in a given radix (2..64)
|
2004-04-11 20:46:22 +00:00
|
|
|
*
|
2019-09-08 21:29:44 +00:00
|
|
|
* Stores upto "size - 1" chars and always a NULL byte, puts the number of characters
|
|
|
|
* written, including the '\0', in "written".
|
2004-04-11 20:46:22 +00:00
|
|
|
*/
|
2019-09-08 21:29:44 +00:00
|
|
|
mp_err mp_to_radix(const mp_int *a, char *str, size_t maxlen, size_t *written, int radix)
|
2004-04-11 20:46:22 +00:00
|
|
|
{
|
2019-09-24 22:29:19 +00:00
|
|
|
size_t digs;
|
2019-05-19 15:16:13 +00:00
|
|
|
mp_err err;
|
2017-08-30 17:15:27 +00:00
|
|
|
mp_int t;
|
|
|
|
mp_digit d;
|
|
|
|
char *_s = str;
|
2004-04-11 20:46:22 +00:00
|
|
|
|
2019-09-08 21:29:44 +00:00
|
|
|
/* check range of radix and size*/
|
2019-10-08 19:47:57 +00:00
|
|
|
if (maxlen < 2u) {
|
|
|
|
return MP_BUF;
|
|
|
|
}
|
|
|
|
if ((radix < 2) || (radix > 64)) {
|
2017-08-30 17:15:27 +00:00
|
|
|
return MP_VAL;
|
|
|
|
}
|
2004-04-11 20:46:22 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
/* quick out if its zero */
|
2019-10-24 15:43:31 +00:00
|
|
|
if (mp_iszero(a)) {
|
2017-08-30 17:15:27 +00:00
|
|
|
*str++ = '0';
|
|
|
|
*str = '\0';
|
2019-09-08 21:29:44 +00:00
|
|
|
if (written != NULL) {
|
|
|
|
*written = 2u;
|
|
|
|
}
|
2017-08-30 17:15:27 +00:00
|
|
|
return MP_OKAY;
|
|
|
|
}
|
2004-04-11 20:46:22 +00:00
|
|
|
|
2019-05-19 15:16:13 +00:00
|
|
|
if ((err = mp_init_copy(&t, a)) != MP_OKAY) {
|
|
|
|
return err;
|
2017-08-30 17:15:27 +00:00
|
|
|
}
|
2004-04-11 20:46:22 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
/* if it is negative output a - */
|
2019-11-09 19:23:03 +00:00
|
|
|
if (mp_isneg(&t)) {
|
2017-08-30 17:15:27 +00:00
|
|
|
/* we have to reverse our digits later... but not the - sign!! */
|
|
|
|
++_s;
|
2004-04-11 20:46:22 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
/* store the flag and mark the number as positive */
|
|
|
|
*str++ = '-';
|
|
|
|
t.sign = MP_ZPOS;
|
2017-08-30 03:51:11 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
/* subtract a char */
|
|
|
|
--maxlen;
|
|
|
|
}
|
2019-09-24 22:29:19 +00:00
|
|
|
digs = 0u;
|
2019-10-24 15:43:31 +00:00
|
|
|
while (!mp_iszero(&t)) {
|
2019-09-07 10:28:26 +00:00
|
|
|
if (--maxlen < 1u) {
|
2017-08-30 17:15:27 +00:00
|
|
|
/* no more room */
|
2019-10-08 19:47:57 +00:00
|
|
|
err = MP_BUF;
|
2019-10-09 18:22:11 +00:00
|
|
|
goto LBL_ERR;
|
2017-08-30 17:15:27 +00:00
|
|
|
}
|
2019-05-19 15:16:13 +00:00
|
|
|
if ((err = mp_div_d(&t, (mp_digit)radix, &t, &d)) != MP_OKAY) {
|
2019-05-29 10:23:08 +00:00
|
|
|
goto LBL_ERR;
|
2017-08-30 17:15:27 +00:00
|
|
|
}
|
2019-11-05 19:35:19 +00:00
|
|
|
*str++ = s_mp_radix_map[d];
|
2017-08-30 17:15:27 +00:00
|
|
|
++digs;
|
|
|
|
}
|
|
|
|
/* reverse the digits of the string. In this case _s points
|
|
|
|
* to the first digit [exluding the sign] of the number
|
|
|
|
*/
|
2019-11-05 19:35:19 +00:00
|
|
|
s_reverse(_s, digs);
|
2004-04-11 20:46:22 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
/* append a NULL so the string is properly terminated */
|
|
|
|
*str = '\0';
|
2019-09-08 21:29:44 +00:00
|
|
|
digs++;
|
2019-10-09 18:22:11 +00:00
|
|
|
|
2019-09-08 21:29:44 +00:00
|
|
|
if (written != NULL) {
|
2019-11-09 19:23:03 +00:00
|
|
|
*written = mp_isneg(a) ? (digs + 1u): digs;
|
2019-09-08 21:29:44 +00:00
|
|
|
}
|
2004-04-11 20:46:22 +00:00
|
|
|
|
2019-05-29 10:23:08 +00:00
|
|
|
LBL_ERR:
|
2017-08-30 17:15:27 +00:00
|
|
|
mp_clear(&t);
|
2019-09-02 16:17:23 +00:00
|
|
|
return err;
|
2004-04-11 20:46:22 +00:00
|
|
|
}
|
|
|
|
|
2004-10-29 22:07:18 +00:00
|
|
|
#endif
|