diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2012-02-15 08:54:54 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2012-02-15 08:54:54 +0100 |
commit | 1f245ddb9ab672a0b253b711e58c186dd6d1ae4f (patch) | |
tree | f6cce0df88ae3090190c96c31107c8139ecd8cd3 /lib/includes/gnutls | |
parent | 0b215d3f27f52808ca7bf2b5a8192fe61ae9203f (diff) | |
download | gnutls-1f245ddb9ab672a0b253b711e58c186dd6d1ae4f.tar.gz |
The hash in gnutls_store_commitment() is specified in raw format.
Diffstat (limited to 'lib/includes/gnutls')
-rw-r--r-- | lib/includes/gnutls/gnutls.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/includes/gnutls/gnutls.h.in b/lib/includes/gnutls/gnutls.h.in index 0c26301e7f..dc4d716bab 100644 --- a/lib/includes/gnutls/gnutls.h.in +++ b/lib/includes/gnutls/gnutls.h.in @@ -1671,7 +1671,7 @@ gnutls_ecc_curve_t gnutls_ecc_curve_get(gnutls_session_t session); const char* service, time_t expiration, gnutls_digest_algorithm_t hash_algo, - const char* hash); + const gnutls_datum_t* hash); /* searches for the provided host/service pair that match the * provided public key in the database. */ @@ -1698,7 +1698,7 @@ gnutls_ecc_curve_t gnutls_ecc_curve_get(gnutls_session_t session); const char* host, const char* service, gnutls_digest_algorithm_t hash_algo, - const char* hash, + const gnutls_datum_t* hash, time_t expiration, unsigned int flags); |