diff options
author | Simon Josefsson <simon@josefsson.org> | 2006-11-25 16:58:19 +0000 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2006-11-25 16:58:19 +0000 |
commit | 40059580e10f23cc15d79c37dc6ae59c4626fb4b (patch) | |
tree | 91add47c9d98dae7c128a8fbbfbcd272f702060a /lib/gnutls_state.h | |
parent | efa17cda8b7baa17ad7326a1b6157b1e4e6f6b85 (diff) | |
download | gnutls-40059580e10f23cc15d79c37dc6ae59c4626fb4b.tar.gz |
Client TLS 1.2 support. Works against www.mikestoolbox.org:4433.
Diffstat (limited to 'lib/gnutls_state.h')
-rw-r--r-- | lib/gnutls_state.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/gnutls_state.h b/lib/gnutls_state.h index b220024b59..0bd9698bd7 100644 --- a/lib/gnutls_state.h +++ b/lib/gnutls_state.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation + * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation * * Author: Nikos Mavroyanopoulos * @@ -61,8 +61,10 @@ int _gnutls_session_is_export (gnutls_session_t session); int _gnutls_openpgp_send_fingerprint (gnutls_session_t session); -int _gnutls_PRF (const opaque * secret, int secret_size, const char *label, - int label_size, const opaque * seed, int seed_size, +int _gnutls_PRF (gnutls_session_t session, + const opaque * secret, int secret_size, + const char *label, int label_size, + const opaque * seed, int seed_size, int total_bytes, void *ret); #define DEFAULT_CERT_TYPE GNUTLS_CRT_X509 |