HomeSort by relevance Sort by last modified time
    Searched refs:QuicTag (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/net/quic/crypto/
crypto_protocol.h 29 typedef std::map<QuicTag, std::string> QuicTagValueMap;
31 const QuicTag kCHLO = TAG('C', 'H', 'L', 'O'); // Client hello
32 const QuicTag kSHLO = TAG('S', 'H', 'L', 'O'); // Server hello
33 const QuicTag kSCFG = TAG('S', 'C', 'F', 'G'); // Server config
34 const QuicTag kREJ = TAG('R', 'E', 'J', '\0'); // Reject
35 const QuicTag kCETV = TAG('C', 'E', 'T', 'V'); // Client encrypted tag-value
39 const QuicTag kP256 = TAG('P', '2', '5', '6'); // ECDH, Curve P-256
40 const QuicTag kC255 = TAG('C', '2', '5', '5'); // ECDH, Curve25519
43 const QuicTag kNULL = TAG('N', 'U', 'L', 'N'); // null algorithm
44 const QuicTag kAESG = TAG('A', 'E', 'S', 'G'); // AES128 + GCM-1
    [all...]
crypto_handshake.h 53 template<class T> void SetValue(QuicTag tag, const T& v) {
60 template<class T> void SetVector(QuicTag tag, const std::vector<T>& v) {
70 QuicTag tag() const { return tag_; }
72 void set_tag(QuicTag tag) { tag_ = tag; }
78 void SetTaglist(QuicTag tag, ...);
80 void SetStringPiece(QuicTag tag, base::StringPiece value);
83 void Erase(QuicTag tag);
90 QuicErrorCode GetTaglist(QuicTag tag, const QuicTag** out_tags,
93 bool GetStringPiece(QuicTag tag, base::StringPiece* out) const
    [all...]
quic_decrypter.cc 13 QuicDecrypter* QuicDecrypter::Create(QuicTag algorithm) {
quic_encrypter.cc 13 QuicEncrypter* QuicEncrypter::Create(QuicTag algorithm) {
crypto_handshake.cc 75 void CryptoHandshakeMessage::SetTaglist(QuicTag tag, ...) {
76 // Warning, if sizeof(QuicTag) > sizeof(int) then this function will break
78 COMPILE_ASSERT(sizeof(QuicTag) <= sizeof(int),
81 vector<QuicTag> tags;
86 QuicTag list_item = va_arg(ap, QuicTag);
101 void CryptoHandshakeMessage::SetStringPiece(QuicTag tag, StringPiece value) {
105 void CryptoHandshakeMessage::Erase(QuicTag tag) {
109 QuicErrorCode CryptoHandshakeMessage::GetTaglist(QuicTag tag,
110 const QuicTag** out_tags
    [all...]
key_exchange.h 42 virtual QuicTag tag() const = 0;
crypto_server_config_protobuf.h 29 QuicTag tag() const {
32 void set_tag(QuicTag tag) {
43 QuicTag tag_;
crypto_utils.h 59 QuicTag aead,
curve25519_key_exchange.h 38 virtual QuicTag tag() const OVERRIDE;
quic_decrypter.h 18 static QuicDecrypter* Create(QuicTag algorithm);
p256_key_exchange.h 47 virtual QuicTag tag() const OVERRIDE;
quic_encrypter.h 18 static QuicEncrypter* Create(QuicTag algorithm);
crypto_framer.h 109 std::vector<std::pair<QuicTag, size_t> > tags_and_lengths_;
curve25519_key_exchange.cc 84 QuicTag Curve25519KeyExchange::tag() const { return kC255; }
quic_crypto_client_config_test.cc 23 QuicTag cver;
crypto_framer.cc 207 QuicTag message_tag;
233 QuicTag tag;
259 for (vector<pair<QuicTag, size_t> >::const_iterator
crypto_utils.cc 81 QuicTag aead,
p256_key_exchange_openssl.cc 116 QuicTag P256KeyExchange::tag() const { return kP256; }
  /external/chromium_org/net/quic/
quic_config.h 29 QuicNegotiableValue(QuicTag tag, Presence presence);
36 const QuicTag tag_;
44 QuicNegotiableUint32(QuicTag name, Presence presence);
89 QuicNegotiableTag(QuicTag name, Presence presence);
95 void set(const QuicTagVector& possible_values, QuicTag default_value);
99 QuicTag GetTag() const;
123 const QuicTag** out,
127 QuicTag negotiated_tag_;
129 QuicTag default_value_;
140 QuicTag default_congestion_control)
    [all...]
quic_utils.h 40 const QuicTag* their_tags,
43 QuicTag* out_result,
66 static std::string TagToString(QuicTag tag);
quic_config.cc 16 QuicNegotiableValue::QuicNegotiableValue(QuicTag tag, Presence presence)
22 QuicNegotiableUint32::QuicNegotiableUint32(QuicTag tag, Presence presence)
113 QuicNegotiableTag::QuicNegotiableTag(QuicTag tag, Presence presence)
122 QuicTag default_value) {
129 QuicTag QuicNegotiableTag::GetTag() const {
148 const QuicTag** out,
177 const QuicTag* received_tags;
185 QuicTag negotiated_tag;
206 const QuicTag* received_tags;
245 QuicTag default_congestion_control)
    [all...]
quic_utils.cc 63 const QuicTag* their_tags,
66 QuicTag* out_result,
72 const QuicTag* our_tags = &our_tags_vector[0];
75 const QuicTag* priority_tags;
76 const QuicTag* inferior_tags;
229 string QuicUtils::TagToString(QuicTag tag) {
232 const QuicTag orig_tag = tag;
quic_protocol_test.cc 15 QuicTag tag = MakeQuicTag('A', 'B', 'C', 'D');
105 QuicTag tag = QuicVersionToQuicTag(version);
120 EXPECT_CALL(log, Log(INFO, _, "Unsupported QuicTag version: FAKE")).Times(1);
  /external/chromium_org/net/quic/test_tools/
crypto_test_utils.h 90 QuicTag tag);
104 // ParseTag returns a QuicTag from parsing |tagstr|. |tagstr| may either be
107 static QuicTag ParseTag(const char* tagstr);
crypto_test_utils.cc 256 QuicTag tag) {
414 QuicTag CryptoTestUtils::ParseTag(const char* tagstr) {
418 QuicTag tag = 0;
481 const QuicTag tag = ParseTag(tagstr);

Completed in 212 milliseconds

1 2