s1-mod/deps/libtommath/mp_to_sbin.c

23 lines
576 B
C
Raw Normal View History

2024-02-27 03:09:30 -05:00
#include "tommath_private.h"
#ifdef MP_TO_SBIN_C
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
/* store in signed [big endian] format */
mp_err mp_to_sbin(const mp_int *a, uint8_t *buf, size_t maxlen, size_t *written)
{
mp_err err;
if (maxlen == 0u) {
return MP_BUF;
}
if ((err = mp_to_ubin(a, buf + 1, maxlen - 1u, written)) != MP_OKAY) {
return err;
}
if (written != NULL) {
(*written)++;
}
buf[0] = mp_isneg(a) ? (uint8_t)1 : (uint8_t)0;
return MP_OKAY;
}
#endif