summaryrefslogtreecommitdiffstats
path: root/net/ssl
diff options
context:
space:
mode:
authorrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-21 08:53:05 +0000
committerrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-21 08:53:05 +0000
commit4d793a837595fbbf9fabadbc87bc89e6e220c958 (patch)
treeeb71bbac084920ee837991d61c7e047c5fb27fe1 /net/ssl
parent9f0a32d8bcac31d360d5b0786da76365b6902115 (diff)
downloadchromium_src-4d793a837595fbbf9fabadbc87bc89e6e220c958.zip
chromium_src-4d793a837595fbbf9fabadbc87bc89e6e220c958.tar.gz
chromium_src-4d793a837595fbbf9fabadbc87bc89e6e220c958.tar.bz2
Flag TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305 as using ECDHE_ECDSA key exchange
BUG=336328 TEST=Navigate to a site that negotiates TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305 (eg: https://www.gmail.com ) and, if TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305 is negotiated, confirm that the key exchange algorithm is listed as ECDHE_ECDSA with the encryption/authentication alg as CHACHA20_POLY1305 Review URL: https://codereview.chromium.org/139743003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@246001 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/ssl')
-rw-r--r--net/ssl/ssl_cipher_suite_names.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ssl/ssl_cipher_suite_names.cc b/net/ssl/ssl_cipher_suite_names.cc
index f9394df..8204fc1 100644
--- a/net/ssl/ssl_cipher_suite_names.cc
+++ b/net/ssl/ssl_cipher_suite_names.cc
@@ -195,7 +195,7 @@ static const struct CipherSuite kCipherSuites[] = {
{0xc08c, 0xf7f}, // TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256
{0xc08d, 0xf87}, // TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384
{0xcc13, 0x108f}, // TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305
- {0xcc14, 0x0d8f}, // TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305
+ {0xcc14, 0x0e8f}, // TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305
};
static const struct {