]> Git Repo - linux.git/blob - lib/crypto/mpi/mpi-mod.c
Merge tag 'ata-6.12-rc1-part2' of git://git.kernel.org/pub/scm/linux/kernel/git/libat...
[linux.git] / lib / crypto / mpi / mpi-mod.c
1 /* mpi-mod.c -  Modular reduction
2  * Copyright (C) 1998, 1999, 2001, 2002, 2003,
3  *               2007  Free Software Foundation, Inc.
4  *
5  * This file is part of Libgcrypt.
6  */
7
8 #include "mpi-internal.h"
9
10 int mpi_mod(MPI rem, MPI dividend, MPI divisor)
11 {
12         return mpi_fdiv_r(rem, dividend, divisor);
13 }
This page took 0.032204 seconds and 4 git commands to generate.