libtommath/bn_mp_to_signed_bin_n.c

16 lines
473 B
C
Raw Normal View History

#include "tommath_private.h"
2005-02-12 08:40:15 +00:00
#ifdef BN_MP_TO_SIGNED_BIN_N_C
2019-04-07 13:29:11 +00:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
2005-02-12 08:40:15 +00:00
/* store in signed [big endian] format */
2017-09-20 14:59:43 +00:00
int mp_to_signed_bin_n(const mp_int *a, unsigned char *b, unsigned long *outlen)
2005-02-12 08:40:15 +00:00
{
if (*outlen < (unsigned long)mp_signed_bin_size(a)) {
return MP_VAL;
}
2017-10-15 17:58:35 +00:00
*outlen = (unsigned long)mp_signed_bin_size(a);
2005-02-12 08:40:15 +00:00
return mp_to_signed_bin(a, b);
}
#endif