libtommath/bn_mp_to_radix.c

75 lines
1.6 KiB
C
Raw Normal View History

#include "tommath_private.h"
2019-09-03 08:59:54 +00:00
#ifdef BN_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
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
*
2017-08-30 03:51:11 +00:00
* Stores upto maxlen-1 chars and always a NULL byte
2004-04-11 20:46:22 +00:00
*/
mp_err mp_to_radix(const mp_int *a, char *str, size_t maxlen, int radix)
2004-04-11 20:46:22 +00:00
{
int 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
2017-08-30 17:15:27 +00:00
/* check range of the maxlen, radix */
2019-09-07 10:28:26 +00:00
if ((maxlen < 2u) || (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 */
if (MP_IS_ZERO(a)) {
2017-08-30 17:15:27 +00:00
*str++ = '0';
*str = '\0';
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;
}
2004-04-11 20:46:22 +00:00
2017-08-30 17:15:27 +00:00
digs = 0;
while (!MP_IS_ZERO(&t)) {
2019-09-07 10:28:26 +00:00
if (--maxlen < 1u) {
2017-08-30 17:15:27 +00:00
/* no more room */
err = MP_VAL;
2017-08-30 17:15:27 +00:00
break;
}
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
}
*str++ = mp_s_rmap[d];
++digs;
}
2004-04-11 20:46:22 +00:00
2017-08-30 17:15:27 +00:00
/* reverse the digits of the string. In this case _s points
* to the first digit [exluding the sign] of the number
*/
2019-04-12 12:56:29 +00:00
s_mp_reverse((unsigned char *)_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';
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