Searched refs:key_exchange (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium/net/base/
H A Dssl_cipher_suite_names_unittest.cc13 const char *key_exchange, *cipher, *mac; local
14 SSLCipherSuiteToStrings(&key_exchange, &cipher, &mac, 0xc001);
15 EXPECT_STREQ(key_exchange, "ECDH_ECDSA");
19 SSLCipherSuiteToStrings(&key_exchange, &cipher, &mac, 0xff31);
20 EXPECT_STREQ(key_exchange, "???");
H A Dssl_cipher_suite_names.cc330 const int key_exchange = cs->encoded >> 7; local
334 *key_exchange_str = kKeyExchangeNames[key_exchange].name;
/external/chromium_org/net/ssl/
H A Dssl_cipher_suite_names_unittest.cc15 const char *key_exchange, *cipher, *mac; local
18 SSLCipherSuiteToStrings(&key_exchange, &cipher, &mac, &is_aead, 0xc001);
19 EXPECT_STREQ("ECDH_ECDSA", key_exchange);
24 SSLCipherSuiteToStrings(&key_exchange, &cipher, &mac, &is_aead, 0x009f);
25 EXPECT_STREQ("DHE_RSA", key_exchange);
30 SSLCipherSuiteToStrings(&key_exchange, &cipher, &mac, &is_aead, 0xff31);
31 EXPECT_STREQ("???", key_exchange);
H A Dssl_cipher_suite_names.cc295 const int key_exchange = cs->encoded >> 8; local
299 *key_exchange_str = kKeyExchangeNames[key_exchange].name;
/external/chromium_org/net/quic/crypto/
H A Dephemeral_key_source.h28 // using the algorithm |key_exchange|, sets |*public_value| to the public key
33 const KeyExchange* key_exchange,
H A Dcrypto_handshake.h160 QuicTag key_exchange; member in struct:net::QuicCryptoNegotiatedParameters
H A Dquic_crypto_client_config.cc14 #include "net/quic/crypto/key_exchange.h"
342 QuicUtils::PEER_PRIORITY, &out_params->key_exchange,
348 out->SetTaglist(kKEXS, out_params->key_exchange, 0);
369 switch (out_params->key_exchange) {
H A Dquic_crypto_server_config.cc24 #include "net/quic/crypto/key_exchange.h"
559 QuicUtils::LOCAL_PRIORITY, &params->key_exchange,
571 const KeyExchange* key_exchange = local
573 if (!key_exchange->CalculateSharedKey(public_value,
664 key_exchange, rand, clock->ApproximateNow(), public_value,
668 key_exchange->NewKeyPair(rand));
H A Dcrypto_handshake.cc17 #include "net/quic/crypto/key_exchange.h"
325 : key_exchange(0),
/external/chromium/chrome/browser/
H A Dpage_info_model.cc223 const char *key_exchange, *cipher, *mac; local
224 net::SSLCipherSuiteToStrings(&key_exchange, &cipher, &mac, cipher_suite);
229 ASCIIToUTF16(cipher), ASCIIToUTF16(mac), ASCIIToUTF16(key_exchange));
/external/chromium_org/net/quic/
H A Dquic_crypto_client_stream_test.cc100 EXPECT_EQ(kC255, crypto_params.key_exchange);
/external/chromium_org/chrome/browser/ui/website_settings/
H A Dwebsite_settings.cc493 const char *key_exchange, *cipher, *mac; local
496 &key_exchange, &cipher, &mac, &is_aead, cipher_suite);
502 ASCIIToUTF16(cipher), ASCIIToUTF16(key_exchange));
506 ASCIIToUTF16(cipher), ASCIIToUTF16(mac), ASCIIToUTF16(key_exchange));
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dtlsv1_common.h215 tls_key_exchange key_exchange; member in struct:tls_cipher_suite
H A Dtlsv1_common.c124 switch (suite->key_exchange) {
H A Dtlsv1_server_write.c165 if (suite && suite->key_exchange == TLS_KEY_X_DH_anon) {
257 keyx = suite->key_exchange;
H A Dtlsv1_client_write.c383 keyx = suite->key_exchange;
H A Dtlsv1_client_read.c546 if (suite && suite->key_exchange == TLS_KEY_X_DH_anon) {
/external/wpa_supplicant_8/src/tls/
H A Dtlsv1_common.h215 tls_key_exchange key_exchange; member in struct:tls_cipher_suite
H A Dtlsv1_common.c124 switch (suite->key_exchange) {
H A Dtlsv1_server_write.c165 if (suite && suite->key_exchange == TLS_KEY_X_DH_anon) {
257 keyx = suite->key_exchange;
H A Dtlsv1_client_write.c383 keyx = suite->key_exchange;
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dtlsv1_common.h215 tls_key_exchange key_exchange; member in struct:tls_cipher_suite
H A Dtlsv1_common.c124 switch (suite->key_exchange) {
H A Dtlsv1_server_write.c165 if (suite && suite->key_exchange == TLS_KEY_X_DH_anon) {
257 keyx = suite->key_exchange;
H A Dtlsv1_client_write.c383 keyx = suite->key_exchange;

Completed in 328 milliseconds

12