summaryrefslogtreecommitdiff
path: root/mpi/mpi-mul.c
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2002-09-20 11:40:27 +0000
committerWerner Koch <wk@gnupg.org>2002-09-20 11:40:27 +0000
commite3f9f68e356ab47ff5424c0fc982a76e34130038 (patch)
tree5b6423814b8e8f0e0591a4a0424de13e2c4d13b4 /mpi/mpi-mul.c
parent5d2adaef9f11fe854e9917cefabf85c0294d4855 (diff)
downloadlibgcrypt-e3f9f68e356ab47ff5424c0fc982a76e34130038.tar.gz
* mpi-mul.c (gcry_mpi_mul_2exp): New. This was declared in
gcrypt.h but only implemented as internal function. Noted by Timo but a few minutes to late for today's release.
Diffstat (limited to 'mpi/mpi-mul.c')
-rw-r--r--mpi/mpi-mul.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/mpi/mpi-mul.c b/mpi/mpi-mul.c
index 23d02e4e..432daa75 100644
--- a/mpi/mpi-mul.c
+++ b/mpi/mpi-mul.c
@@ -106,6 +106,12 @@ _gcry_mpi_mul_2exp( MPI w, MPI u, unsigned long cnt)
}
+void
+gcry_mpi_mul_2exp( MPI w, MPI u, unsigned long cnt)
+{
+ _gcry_mpi_mul_2exp (w, u, cnt);
+}
+
void
gcry_mpi_mul( MPI w, MPI u, MPI v)