- Corrected bug in TLS renegotiation.
- Corrected bug in OpenPGP key loading using a callback.
- gnutls-srpcrypt was renamed to srptool
+- Allow handshake requests by the client.
Version 1.1.9 (14/04/2004)
- Added support for authority key identifier and the extended key usage
dnl Gnutls Version
GNUTLS_MAJOR_VERSION=1
GNUTLS_MINOR_VERSION=1
-GNUTLS_MICRO_VERSION=8
+GNUTLS_MICRO_VERSION=10
GNUTLS_VERSION=$GNUTLS_MAJOR_VERSION.$GNUTLS_MINOR_VERSION.$GNUTLS_MICRO_VERSION
AC_DEFINE_UNQUOTED(GNUTLS_VERSION, "$GNUTLS_VERSION", [version of gnutls])
- Convert documentation to texinfo format
- Allow sending V2 Hello messages. It seems that some (old) broken
implementations require that.
-- Allow unexpected Client Hello messages
- Add Kerberos support
(+) Means high priority
{
int result = 0;
int res;
- char c;
if (_gnutls_init) goto out;
_gnutls_init++;
break;
case GNUTLS_HANDSHAKE:
- /* This is legal if HELLO_REQUEST is received - and we are a client,
- * or we are a server. A client may initiate a renegotiation at any time.
+ /* This is legal if HELLO_REQUEST is received - and we are a client.
+ * If we are a server, a client may initiate a renegotiation at any time.
*/
if ( session->security_parameters.entity==GNUTLS_SERVER) {
gnutls_assert();