diff options
Diffstat (limited to 'mpi/g10m.c')
-rw-r--r-- | mpi/g10m.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mpi/g10m.c b/mpi/g10m.c index 5c23f0ae7..3100ea3a2 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 ); +} + + |