libtommath/mp_to_radix.c

96 lines
2.1 KiB
C
Raw Normal View History

#include "tommath_private.h"
#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
/* reverse an array, used for radix code */
2019-10-29 17:41:25 +00:00
static void s_mp_reverse(char *s, size_t len)
{
2019-10-29 17:41:25 +00:00
size_t ix = 0, iy = len - 1u;
while (ix < iy) {
2019-10-29 17:41:25 +00:00
MP_EXCH(char, s[ix], s[iy]);
++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
*
* 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
*/
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
{
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
/* 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';
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 - */
if (t.sign == MP_NEG) {
/* 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;
}
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;
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-10-17 14:59:02 +00:00
*str++ = s_mp_rmap[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-10-29 17:41:25 +00:00
s_mp_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';
digs++;
if (written != NULL) {
2019-10-07 17:22:46 +00:00
*written = (a->sign == MP_NEG) ? (digs + 1u): digs;
}
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);
return err;
2004-04-11 20:46:22 +00:00
}
2004-10-29 22:07:18 +00:00
#endif