summaryrefslogtreecommitdiffstats
path: root/mpi/mpi.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpi/mpi.c')
-rw-r--r--mpi/mpi.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/mpi/mpi.c b/mpi/mpi.c
index 24df7c30..20a48a12 100644
--- a/mpi/mpi.c
+++ b/mpi/mpi.c
@@ -2998,6 +2998,11 @@ int mp_count_bits(mp_int *mp)
/* }}} */
+int mp_is_pow_two(mp_int *mp)
+{
+ return s_mp_ispow2(mp) >= 0;
+}
+
/* {{{ mp_read_radix(mp, str, radix) */
/*