HomeSort by relevance Sort by last modified time
    Searched refs:QuicTag (Results 1 - 25 of 31) 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', 'L'); // null algorithm
44 const QuicTag kAESG = TAG('A', 'E', 'S', 'G'); // AES128 + GCM-1
    [all...]
quic_decrypter.cc 13 QuicDecrypter* QuicDecrypter::Create(QuicTag algorithm) {
quic_encrypter.cc 13 QuicEncrypter* QuicEncrypter::Create(QuicTag algorithm) {
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; }
81 void SetTaglist(QuicTag tag, ...);
83 void SetStringPiece(QuicTag tag, base::StringPiece value);
86 void Erase(QuicTag tag);
93 QuicErrorCode GetTaglist(QuicTag tag, const QuicTag** out_tags,
96 bool GetStringPiece(QuicTag tag, base::StringPiece* out) const
    [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);
crypto_handshake.cc 92 void CryptoHandshakeMessage::SetTaglist(QuicTag tag, ...) {
93 // Warning, if sizeof(QuicTag) > sizeof(int) then this function will break
95 COMPILE_ASSERT(sizeof(QuicTag) <= sizeof(int),
98 vector<QuicTag> tags;
103 QuicTag list_item = va_arg(ap, QuicTag);
118 void CryptoHandshakeMessage::SetStringPiece(QuicTag tag, StringPiece value) {
122 void CryptoHandshakeMessage::Erase(QuicTag tag) {
126 QuicErrorCode CryptoHandshakeMessage::GetTaglist(QuicTag tag,
127 const QuicTag** out_tags
    [all...]
p256_key_exchange.h 47 virtual QuicTag tag() const OVERRIDE;
quic_encrypter.h 18 static QuicEncrypter* Create(QuicTag algorithm);
crypto_framer.h 111 std::vector<std::pair<QuicTag, size_t> > tags_and_lengths_;
curve25519_key_exchange.cc 84 QuicTag Curve25519KeyExchange::tag() const { return kC255; }
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 30 QuicNegotiableValue(QuicTag tag, Presence presence);
37 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,
65 static std::string TagToString(QuicTag tag);
quic_config.cc 15 QuicNegotiableValue::QuicNegotiableValue(QuicTag tag, Presence presence)
21 QuicNegotiableUint32::QuicNegotiableUint32(QuicTag tag, Presence presence)
110 QuicNegotiableTag::QuicNegotiableTag(QuicTag tag, Presence presence)
117 QuicTag default_value) {
124 QuicTag QuicNegotiableTag::GetTag() const {
143 const QuicTag** out,
172 const QuicTag* received_tags;
180 QuicTag negotiated_tag;
201 const QuicTag* received_tags;
236 QuicTag default_congestion_control)
    [all...]
quic_utils.cc 60 const QuicTag* their_tags,
63 QuicTag* out_result,
69 const QuicTag* our_tags = &our_tags_vector[0];
72 const QuicTag* priority_tags;
73 const QuicTag* inferior_tags;
214 string QuicUtils::TagToString(QuicTag tag) {
217 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);
quic_protocol.h 41 // QuicTag is the type of a tag in the wire protocol.
42 typedef uint32 QuicTag;
43 typedef std::vector<QuicTag> QuicTagVector;
209 // QuicTag is written to and read from the wire, but we prefer to use
211 // Helper function which translates from a QuicVersion to a QuicTag. Returns 0
213 NET_EXPORT_PRIVATE QuicTag QuicVersionToQuicTag(const QuicVersion version);
215 // Returns appropriate QuicVersion from a QuicTag.
217 NET_EXPORT_PRIVATE QuicVersion QuicTagToQuicVersion(const QuicTag version_tag);
237 NET_EXPORT_PRIVATE QuicTag MakeQuicTag(char a, char b, char c, char d);
quic_protocol.cc 130 QuicTag QuicVersionToQuicTag(const QuicVersion version) {
144 QuicVersion QuicTagToQuicVersion(const QuicTag version_tag) {
145 const QuicTag quic_tag_v7 = MakeQuicTag('Q', '0', '0', '7');
146 const QuicTag quic_tag_v8 = MakeQuicTag('Q', '0', '0', '8');
154 DLOG(INFO) << "Unsupported QuicTag version: "
  /external/chromium_org/net/quic/test_tools/
crypto_test_utils.h 79 QuicTag tag);
93 // ParseTag returns a QuicTag from parsing |tagstr|. |tagstr| may either be
96 static QuicTag ParseTag(const char* tagstr);

Completed in 289 milliseconds

1 2