1
0
Fork 0
android_kernel_rockchip_tart/lib/crypto/mpi/mpi-mod.c
2025-06-27 00:32:42 -05:00

13 lines
301 B
C

/* 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);
}