2018-09-10 16:48:58 +00:00
|
|
|
#include "tommath_private.h"
|
2019-10-19 14:24:39 +00:00
|
|
|
#ifdef MP_COMPLEMENT_C
|
2019-04-07 13:29:11 +00:00
|
|
|
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
|
|
|
|
/* SPDX-License-Identifier: Unlicense */
|
2018-09-10 16:48:58 +00:00
|
|
|
|
|
|
|
/* b = ~a */
|
2019-05-12 22:22:18 +00:00
|
|
|
mp_err mp_complement(const mp_int *a, mp_int *b)
|
2018-09-10 16:48:58 +00:00
|
|
|
{
|
2019-11-03 10:00:33 +00:00
|
|
|
mp_int a_ = *a;
|
|
|
|
a_.sign = ((a_.sign == MP_ZPOS) && !mp_iszero(a)) ? MP_NEG : MP_ZPOS;
|
|
|
|
return mp_sub_d(&a_, 1uL, b);
|
2018-09-10 16:48:58 +00:00
|
|
|
}
|
|
|
|
#endif
|