libtommath/bn_mp_to_signed_bin.c

17 lines
466 B
C
Raw Normal View History

#include "tommath_private.h"
2004-10-29 22:07:18 +00:00
#ifdef BN_MP_TO_SIGNED_BIN_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_signed_bin(const mp_int *a, unsigned char *b)
2003-02-28 16:08:34 +00:00
{
2019-05-19 15:16:13 +00:00
mp_err err;
if ((err = mp_to_unsigned_bin(a, b + 1)) != MP_OKAY) {
return err;
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