summaryrefslogtreecommitdiff
path: root/mpi
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>1998-08-08 19:26:58 +0000
committerWerner Koch <wk@gnupg.org>1998-08-08 19:26:58 +0000
commit26f8696696425b3b8b66454162a55caba2fef01f (patch)
treeaed6a63856e7e26ddf41cb529c0c897a07d35bee /mpi
parentc355eb5c4e0e6578ff9cda30e83ab9adcacd913a (diff)
downloadlibgcrypt-26f8696696425b3b8b66454162a55caba2fef01f.tar.gz
ready for a new release
Diffstat (limited to 'mpi')
-rw-r--r--mpi/g10m.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/mpi/g10m.c b/mpi/g10m.c
index 5c23f0ae..3100ea3a 100644
--- a/mpi/g10m.c
+++ b/mpi/g10m.c
@@ -85,3 +85,11 @@ g10m_get_size( MPI a )
return mpi_get_nlimbs( a ) * BITS_PER_MPI_LIMB;
}
+
+void
+g10m_set_buffer( MPI a, const char *buffer, unsigned nbytes, int sign )
+{
+ mpi_set_buffer( a, buffer, nbytes, sign );
+}
+
+