tommath/bn_mp_fwrite.c

52 lines
1.1 KiB
C
Raw Normal View History

#include "tommath_private.h"
2004-10-29 18:07:18 -04:00
#ifdef BN_MP_FWRITE_C
2003-07-02 11:39:39 -04:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis
*
2003-08-04 21:24:44 -04:00
* LibTomMath is a library that provides multiple-precision
2003-07-02 11:39:39 -04:00
* integer arithmetic as well as number theoretic functionality.
*
2003-08-04 21:24:44 -04:00
* The library was designed directly after the MPI library by
2003-07-02 11:39:39 -04:00
* Michael Fromberger but has been written from scratch with
* additional optimizations in place.
*
2018-12-29 11:56:20 -05:00
* SPDX-License-Identifier: Unlicense
2003-07-02 11:39:39 -04:00
*/
#ifndef LTM_NO_FILE
2017-09-20 10:59:43 -04:00
int mp_fwrite(const mp_int *a, int radix, FILE *stream)
2003-07-02 11:39:39 -04:00
{
char *buf;
int err, len, x;
2017-08-29 23:51:11 -04:00
2004-01-25 12:40:21 -05:00
if ((err = mp_radix_size(a, radix, &len)) != MP_OKAY) {
return err;
2003-07-02 11:39:39 -04:00
}
2004-01-25 12:40:21 -05:00
2017-10-15 13:58:35 -04:00
buf = OPT_CAST(char) XMALLOC((size_t)len);
2003-07-02 11:39:39 -04:00
if (buf == NULL) {
return MP_MEM;
}
2017-08-29 23:51:11 -04:00
2003-07-02 11:39:39 -04:00
if ((err = mp_toradix(a, buf, radix)) != MP_OKAY) {
XFREE(buf);
2003-07-02 11:39:39 -04:00
return err;
}
2017-08-29 23:51:11 -04:00
2003-07-02 11:39:39 -04:00
for (x = 0; x < len; x++) {
2017-10-15 13:58:35 -04:00
if (fputc((int)buf[x], stream) == EOF) {
2017-08-29 16:23:48 -04:00
XFREE(buf);
return MP_VAL;
}
2003-07-02 11:39:39 -04:00
}
2017-08-29 23:51:11 -04:00
XFREE(buf);
2003-07-02 11:39:39 -04:00
return MP_OKAY;
}
#endif
2003-07-02 11:39:39 -04:00
2004-10-29 18:07:18 -04:00
#endif
2005-08-01 12:37:28 -04:00
2017-08-28 10:27:26 -04:00
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */