1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-27 09:48:08 +00:00
simplesshd/dropbear/libtommath/bn_mp_fwrite.c

46 lines
992 B
C
Raw Normal View History

2020-12-28 21:40:37 +00:00
#include "tommath_private.h"
2014-12-10 21:56:49 +00:00
#ifdef BN_MP_FWRITE_C
2020-12-28 21:40:37 +00:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
#ifndef MP_NO_FILE
mp_err mp_fwrite(const mp_int *a, int radix, FILE *stream)
2014-12-10 21:56:49 +00:00
{
char *buf;
2020-12-28 21:40:37 +00:00
mp_err err;
int len;
size_t written;
/* TODO: this function is not in this PR */
if (MP_HAS(MP_RADIX_SIZE_OVERESTIMATE)) {
/* if ((err = mp_radix_size_overestimate(&t, base, &len)) != MP_OKAY) goto LBL_ERR; */
} else {
if ((err = mp_radix_size(a, radix, &len)) != MP_OKAY) {
return err;
}
2014-12-10 21:56:49 +00:00
}
2020-12-28 21:40:37 +00:00
buf = (char *) MP_MALLOC((size_t)len);
2014-12-10 21:56:49 +00:00
if (buf == NULL) {
return MP_MEM;
}
2020-12-28 21:40:37 +00:00
if ((err = mp_to_radix(a, buf, (size_t)len, &written, radix)) != MP_OKAY) {
goto LBL_ERR;
2014-12-10 21:56:49 +00:00
}
2020-12-28 21:40:37 +00:00
if (fwrite(buf, written, 1uL, stream) != 1uL) {
err = MP_ERR;
goto LBL_ERR;
2014-12-10 21:56:49 +00:00
}
2020-12-28 21:40:37 +00:00
err = MP_OKAY;
LBL_ERR:
MP_FREE_BUFFER(buf, (size_t)len);
return err;
2014-12-10 21:56:49 +00:00
}
2019-06-09 20:44:26 +00:00
#endif
2014-12-10 21:56:49 +00:00
#endif