diff options
author | Jouni Malinen <j@w1.fi> | 2014-03-09 13:43:50 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2014-03-09 13:43:50 (GMT) |
commit | 65074a2a7ca5c9d0d1fc8a72da2176ac0e81a246 (patch) | |
tree | 01838eaf7622c899fc555eb23c37116f8579c900 /src/tls/tlsv1_client.c | |
parent | 41ebfe97ec0f3704fd1ef7cc15d06a01af62f1c5 (diff) | |
download | hostap-65074a2a7ca5c9d0d1fc8a72da2176ac0e81a246.zip hostap-65074a2a7ca5c9d0d1fc8a72da2176ac0e81a246.tar.gz hostap-65074a2a7ca5c9d0d1fc8a72da2176ac0e81a246.tar.bz2 |
TLS: Add support for DHE-RSA cipher suites
This extends the internal TLS implementation to support DHE-RSA
cipher suites in both server and client roles.
Signed-off-by: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'src/tls/tlsv1_client.c')
-rw-r--r-- | src/tls/tlsv1_client.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/tls/tlsv1_client.c b/src/tls/tlsv1_client.c index 12148b6..4a4f0b6 100644 --- a/src/tls/tlsv1_client.c +++ b/src/tls/tlsv1_client.c @@ -1,6 +1,6 @@ /* * TLS v1.0/v1.1/v1.2 client (RFC 2246, RFC 4346, RFC 5246) - * Copyright (c) 2006-2011, Jouni Malinen <j@w1.fi> + * Copyright (c) 2006-2014, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. @@ -459,10 +459,15 @@ struct tlsv1_client * tlsv1_client_init(void) count = 0; suites = conn->cipher_suites; + suites[count++] = TLS_DHE_RSA_WITH_AES_256_CBC_SHA256; suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA256; + suites[count++] = TLS_DHE_RSA_WITH_AES_256_CBC_SHA; suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA; + suites[count++] = TLS_DHE_RSA_WITH_AES_128_CBC_SHA256; suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA256; + suites[count++] = TLS_DHE_RSA_WITH_AES_128_CBC_SHA; suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA; + suites[count++] = TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA; suites[count++] = TLS_RSA_WITH_3DES_EDE_CBC_SHA; suites[count++] = TLS_RSA_WITH_RC4_128_SHA; suites[count++] = TLS_RSA_WITH_RC4_128_MD5; |