summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-08-26 16:33:23 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-08-26 16:33:23 +0000
commit42ced2f142e8b3e834056a4ecbf068ff42f109f0 (patch)
treed0aa1584e67d1867e7b886f4af21e35e3a7103b2
parent3f1b122879bf0aa5a9a27441c886d013d45c7347 (diff)
downloadgnutls-42ced2f142e8b3e834056a4ecbf068ff42f109f0.tar.gz
*** empty log message ***
-rw-r--r--doc/tex/x509.tex2
-rw-r--r--src/cli.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/tex/x509.tex b/doc/tex/x509.tex
index b8d547e305..bcad96a8d8 100644
--- a/doc/tex/x509.tex
+++ b/doc/tex/x509.tex
@@ -45,5 +45,5 @@ function.
Note that \gnutls{} is not a generic purpose X.509 toolkit\footnote{Aegypten is such a toolkit. See
\htmladdnormallink{http://www.gnupg.org/aegypten/}{http://www.gnupg.org/aegypten/}}.
\gnutls{} only includes the required,
-in order to use the TLS ciphersuites which require X.509 certificates.
+in order to use the TLS ciphersuites which depend on X.509 certificates.
diff --git a/src/cli.c b/src/cli.c
index 31dd2386de..bf90e40267 100644
--- a/src/cli.c
+++ b/src/cli.c
@@ -77,8 +77,8 @@ int kx_priority[16] =
GNUTLS_KX_ANON_DH, GNUTLS_KX_RSA_EXPORT, 0
};
int cipher_priority[16] =
- { GNUTLS_CIPHER_ARCFOUR_40, GNUTLS_CIPHER_RIJNDAEL_128_CBC, GNUTLS_CIPHER_3DES_CBC,
- GNUTLS_CIPHER_ARCFOUR_128, 0
+ { GNUTLS_CIPHER_ARCFOUR_128, GNUTLS_CIPHER_RIJNDAEL_128_CBC, GNUTLS_CIPHER_3DES_CBC,
+ GNUTLS_CIPHER_ARCFOUR_40, 0
};
int comp_priority[16] = { GNUTLS_COMP_ZLIB, GNUTLS_COMP_NULL, 0 };
int mac_priority[16] = { GNUTLS_MAC_SHA, GNUTLS_MAC_MD5, 0 };