1 /* mpi-mod.c - Modular reduction
2 * Copyright (C) 1998, 1999, 2001, 2002, 2003,
3 * 2007 Free Software Foundation, Inc.
5 * This file is part of Libgcrypt.
8 #include "mpi-internal.h"
10 int mpi_mod(MPI rem, MPI dividend, MPI divisor)
12 return mpi_fdiv_r(rem, dividend, divisor);