libtommath/bn_mp_to_sbin.c

24 lines
601 B
C
Raw Normal View History

#include "tommath_private.h"
#ifdef BN_MP_TO_SBIN_C
2019-04-07 13:29:11 +00:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
2003-02-28 16:08:34 +00:00
/* store in signed [big endian] format */
mp_err mp_to_sbin(const mp_int *a, unsigned char *b, size_t maxlen, size_t *written)
2003-02-28 16:08:34 +00:00
{
2019-05-19 15:16:13 +00:00
mp_err err;
if (maxlen == 0u) {
return MP_VAL;
}
if ((err = mp_to_ubin(a, b + 1, maxlen - 1u, written)) != MP_OKAY) {
2019-05-19 15:16:13 +00:00
return err;
2017-08-30 17:15:27 +00:00
}
if (written != NULL) {
(*written)++;
}
2017-08-30 17:15:27 +00:00
b[0] = (a->sign == MP_ZPOS) ? (unsigned char)0 : (unsigned char)1;
return MP_OKAY;
2003-02-28 16:08:34 +00:00
}
2004-10-29 22:07:18 +00:00
#endif