summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-09-03 14:56:40 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-09-03 14:56:40 +0000
commit8d03a6c316e7c46b48e5f1daed07cf89d26395e8 (patch)
tree612288317c3d4ae8c6bf6cad3c2490351fcacc25
parent46c9a495f65ae12a5b584ece67bea0ebfbd74343 (diff)
downloadgnutls-8d03a6c316e7c46b48e5f1daed07cf89d26395e8.tar.gz
*** empty log message ***
-rw-r--r--NEWS5
-rw-r--r--THANKS1
-rw-r--r--configure.in2
-rw-r--r--libextra/ext_srp.c2
4 files changed, 8 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index aadfd2e60e..eeb0efe10f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+Version 0.5.6
+- Corrected bugs in SRP implementation, which prevented gnutls
+ to interoperate with other implementations.
+- Corrected bug in cert_type extension.
+
Version 0.5.5 (3/09/2002)
- Updated the SRP implementation to the latest draft. The blowfish
crypt implementation was removed, since the new draft does not allow
diff --git a/THANKS b/THANKS
index ef4a6b8c1a..66fa384176 100644
--- a/THANKS
+++ b/THANKS
@@ -13,3 +13,4 @@ Marc Huber <Marc.Huber@web.de>
Guillaume Morin <guillaume@morinfr.org>
Andrew McDonald <andrew@mcdonald.org.uk>
Jeff Johnson <jbj@redhat.com>
+David Taylor <dtaylo11@bigpond.net.au>
diff --git a/configure.in b/configure.in
index e3e5430dc3..df16135697 100644
--- a/configure.in
+++ b/configure.in
@@ -12,7 +12,7 @@ AC_DEFINE_UNQUOTED(T_OS, "$target_os")
dnl Gnutls Version
GNUTLS_MAJOR_VERSION=0
GNUTLS_MINOR_VERSION=5
-GNUTLS_MICRO_VERSION=5
+GNUTLS_MICRO_VERSION=6
GNUTLS_VERSION=$GNUTLS_MAJOR_VERSION.$GNUTLS_MINOR_VERSION.$GNUTLS_MICRO_VERSION
AC_DEFINE_UNQUOTED(GNUTLS_VERSION, "$GNUTLS_VERSION")
diff --git a/libextra/ext_srp.c b/libextra/ext_srp.c
index 98dc6127dd..1447d456b1 100644
--- a/libextra/ext_srp.c
+++ b/libextra/ext_srp.c
@@ -85,7 +85,7 @@ int _gnutls_srp_send_params( gnutls_session state, opaque* data, int data_size)
gnutls_assert();
return GNUTLS_E_INVALID_REQUEST;
}
-
+
data[0] = len;
memcpy( &data[1], cred->username, len);
return len + 1;