/* mpi-mul.c - MPI functions * Copyright (C) 1994, 1996, 1998, 2001, 2002, * 2003 Free Software Foundation, Inc. * * This file is part of Libgcrypt. * * Note: This code is heavily based on the GNU MP Library. * Actually it's the same code with only minor changes in the * way the data is stored; this is to support the abstraction * of an optional secure memory allocation which may be used * to avoid revealing of sensitive data due to paging etc. */ #include "mpi-internal.h" void mpi_mul(MPI w, MPI u, MPI v) { … } EXPORT_SYMBOL_GPL(…); void mpi_mulm(MPI w, MPI u, MPI v, MPI m) { … } EXPORT_SYMBOL_GPL(…);