diff options
author | Werner Koch <wk@gnupg.org> | 1998-08-08 21:27:00 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1998-08-08 21:27:00 +0200 |
commit | 6ccf4e0f80547ecaf2df19443093d9a53e7dc57e (patch) | |
tree | a5ea0d7ce2a6eb8a7f74ccfaf3921b08e7ec4997 /mpi | |
parent | new (diff) | |
download | gnupg2-6ccf4e0f80547ecaf2df19443093d9a53e7dc57e.tar.xz gnupg2-6ccf4e0f80547ecaf2df19443093d9a53e7dc57e.zip |
ready for a new release
Diffstat (limited to 'mpi')
-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 ); +} + + |