diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2002-11-12 10:59:27 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2002-11-12 10:59:27 +0000 |
commit | d74dee53e5f34c57afa959f34c64f08f97500dd8 (patch) | |
tree | 89b35c872e67ca2f3fb4e6d456c302f7a326e19e /includes | |
parent | 11794c86191092ec504c219808bb9474315f4e54 (diff) | |
download | gnutls-d74dee53e5f34c57afa959f34c64f08f97500dd8.tar.gz |
The gnutls_openpgp_recv_key_func() callback function now accepts a
key fingerprint, instead of the key id.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/gnutls/extra.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/gnutls/extra.h b/includes/gnutls/extra.h index ec009648e2..da4b744997 100644 --- a/includes/gnutls/extra.h +++ b/includes/gnutls/extra.h @@ -68,7 +68,7 @@ time_t gnutls_openpgp_extract_key_expiration_time( const gnutls_datum *cert ); int gnutls_openpgp_extract_key_id( const gnutls_datum *cert, unsigned char keyid[8]); -typedef int (*gnutls_openpgp_recv_key_func)(unsigned char keyid[8], +typedef int (*gnutls_openpgp_recv_key_func)(unsigned char keyfpr[20], gnutls_datum *key); void gnutls_openpgp_set_recv_key_function( gnutls_session, gnutls_openpgp_recv_key_func); |