libtommath/bn_mp_to_signed_bin.c

18 lines
465 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 */
2017-09-20 14:59:43 +00:00
int mp_to_signed_bin(const mp_int *a, unsigned char *b)
2003-02-28 16:08:34 +00:00
{
2017-08-30 17:15:27 +00:00
int res;
2003-02-28 16:08:34 +00:00
2017-08-30 17:15:27 +00:00
if ((res = mp_to_unsigned_bin(a, b + 1)) != MP_OKAY) {
return res;
}
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