diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2014-09-22 08:56:23 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2014-09-22 08:56:25 +0200 |
commit | 7fd3dc9ad95bdad88ca0d097af88ca9aa5816311 (patch) | |
tree | 01e9d4b74ece2729f87fb43da59b47b9fcbffd95 /lib/abstract_int.h | |
parent | 2158e5dc7962094418e0435b2ff8fb5b6117598a (diff) | |
download | gnutls-7fd3dc9ad95bdad88ca0d097af88ca9aa5816311.tar.gz |
introduced gnutls_privkey_import_ext3()
That function allows copying an external specified private
key, as well as allow variability on the capabilities of an
external key.
Diffstat (limited to 'lib/abstract_int.h')
-rw-r--r-- | lib/abstract_int.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/abstract_int.h b/lib/abstract_int.h index 2626430daa..5e1a6e8136 100644 --- a/lib/abstract_int.h +++ b/lib/abstract_int.h @@ -41,6 +41,8 @@ struct gnutls_privkey_st { gnutls_privkey_sign_func sign_func; gnutls_privkey_decrypt_func decrypt_func; gnutls_privkey_deinit_func deinit_func; + gnutls_privkey_copy_func copy_func; + gnutls_privkey_pk_func pk_func; void *userdata; } ext; } key; |