diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-12-16 17:06:45 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-12-16 17:06:45 +0100 |
commit | d8e2f838bfb81141e7f44cbd2f7adcc756f26044 (patch) | |
tree | 45653966472bd2644c9604b15e9135279c7b1686 /lib/abstract_int.h | |
parent | e0e3e4324d753041aba8dfe70fc7b755cba2616d (diff) | |
download | gnutls-d8e2f838bfb81141e7f44cbd2f7adcc756f26044.tar.gz |
Added gnutls_pubkey_import_privkey(), that will copy the public key from a gnutls_privkey_t structure.
Diffstat (limited to 'lib/abstract_int.h')
-rw-r--r-- | lib/abstract_int.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/abstract_int.h b/lib/abstract_int.h new file mode 100644 index 0000000000..70fc880c1c --- /dev/null +++ b/lib/abstract_int.h @@ -0,0 +1,9 @@ +#ifndef _ABSTRACT_INT_H +# define _ABSTRACT_INT_H + +#include <gnutls/abstract.h> + +int _gnutls_privkey_get_public_mpis (gnutls_privkey_t key, + bigint_t * params, int *params_size); + +#endif |