From b4cf98931b0414ea0e038825cb7502a40ad333b5 Mon Sep 17 00:00:00 2001 From: Ingela Anderton Andin Date: Mon, 24 May 2010 09:22:14 +0000 Subject: Changed the documentation to match latest implementation and design decisions. --- lib/ssl/doc/src/new_ssl.xml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'lib/ssl') diff --git a/lib/ssl/doc/src/new_ssl.xml b/lib/ssl/doc/src/new_ssl.xml index ab6e112a35..4ffaa9d96a 100644 --- a/lib/ssl/doc/src/new_ssl.xml +++ b/lib/ssl/doc/src/new_ssl.xml @@ -88,6 +88,10 @@ extensions are not supported yet. Supported SSL/TLS-versions are SSL-3.0 and TLS-1.0 For security reasons sslv2 is not supported. + Ephemeral Diffie-Hellman cipher suites are supported + but not Diffie Hellman Certificates cipher suites. + Export cipher suites are not supported as the + U.S. lifted its export restrictions in early 2000. @@ -148,25 +152,20 @@

protocol() = sslv3 | tlsv1

-

ciphers() = [ciphersuite()] | sting() (according to old API)

+

ciphers() = [ciphersuite()] | string() (according to old API)

ciphersuite() = - {key_exchange(), cipher(), hash(), exportable()}

+ {key_exchange(), cipher(), hash()}

-

key_exchange() = rsa | dh_dss | dh_rsa | dh_anon | dhe_dss - | dhe_rsa | krb5 | KeyExchange_export +

key_exchange() = rsa | dhe_dss | dhe_rsa

-

cipher() = rc4_128 | idea_cbc | des_cbc | '3des_ede_cbc' - des40_cbc | dh_dss | aes_128_cbc | aes_256_cbc | - rc2_cbc_40 | rc4_40

+

cipher() = rc4_128 | des_cbc | '3des_ede_cbc' + | aes_128_cbc | aes_256_cbc

hash() = md5 | sha

-

exportable() = export | no_export | ignore -

-

ssl_imp() = new | old - default is old.

-- cgit v1.2.3