summaryrefslogtreecommitdiffstats
path: root/mpi/mpi.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpi/mpi.c')
-rw-r--r--mpi/mpi.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/mpi/mpi.c b/mpi/mpi.c
index 7989a98c..93a97331 100644
--- a/mpi/mpi.c
+++ b/mpi/mpi.c
@@ -571,6 +571,15 @@ mp_err mp_get_intptr(mp_int *mp, int_ptr_t *z)
return MP_OKAY;
}
+mp_err mp_set_word(mp_int *mp, mp_word w, int sign)
+{
+ USED(mp) = 2;
+ DIGIT(mp, 0) = w & MP_DIGIT_MAX;
+ DIGIT(mp, 1) = w >> MP_DIGIT_BIT;
+ SIGN(mp) = sign;
+ return MP_OKAY;
+}
+
/*------------------------------------------------------------------------*/
/* {{{ Digit arithmetic */