summaryrefslogtreecommitdiff
path: root/lib/crypto/mpi/mpi-mod.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/crypto/mpi/mpi-mod.c')
-rw-r--r--lib/crypto/mpi/mpi-mod.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/crypto/mpi/mpi-mod.c b/lib/crypto/mpi/mpi-mod.c
new file mode 100644
index 000000000000..d5fdaec3d0b6
--- /dev/null
+++ b/lib/crypto/mpi/mpi-mod.c
@@ -0,0 +1,13 @@
+/* mpi-mod.c - Modular reduction
+ * Copyright (C) 1998, 1999, 2001, 2002, 2003,
+ * 2007 Free Software Foundation, Inc.
+ *
+ * This file is part of Libgcrypt.
+ */
+
+#include "mpi-internal.h"
+
+int mpi_mod(MPI rem, MPI dividend, MPI divisor)
+{
+ return mpi_fdiv_r(rem, dividend, divisor);
+}