Home
last modified time | relevance | path

Searched refs:crypto_negotiated_params_ (Results 1 – 20 of 20) sorted by relevance

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/third_party/quiche/src/quic/core/
H A Dquic_crypto_server_stream.cc73 crypto_negotiated_params_(new QuicCryptoNegotiatedParameters) {} in QuicCryptoServerStream()
202 std::move(crypto_negotiated_params_->initial_crypters.encrypter)); in FinishProcessingHandshakeMessageAfterProcessClientHello()
205 std::move(crypto_negotiated_params_->initial_crypters.decrypter), in FinishProcessingHandshakeMessageAfterProcessClientHello()
217 std::move(crypto_negotiated_params_->forward_secure_crypters.encrypter)); in FinishProcessingHandshakeMessageAfterProcessClientHello()
220 std::move(crypto_negotiated_params_->forward_secure_crypters.decrypter), in FinishProcessingHandshakeMessageAfterProcessClientHello()
250 *crypto_negotiated_params_, cached_network_params, std::move(cb)); in SendServerConfigUpdate()
338 crypto_negotiated_params_->channel_id.empty()) { in GetBase64SHA256ClientChannelID()
342 const std::string& channel_id(crypto_negotiated_params_->channel_id); in GetBase64SHA256ClientChannelID()
362 return *crypto_negotiated_params_; in crypto_negotiated_params()
415 crypto_negotiated_params_, signed_config_, in ProcessClientHello()
H A Dquic_crypto_client_handshaker.cc73 crypto_negotiated_params_(new QuicCryptoNegotiatedParameters) {} in QuicCryptoClientHandshaker()
154 return *crypto_negotiated_params_; in crypto_negotiated_params()
183 crypto_negotiated_params_, &error_details); in HandleServerConfigUpdateMessage()
288 /* demand_x509_proof= */ true, crypto_negotiated_params_, &out); in DoSendCHLO()
319 session()->connection()->random_generator(), crypto_negotiated_params_, in DoSendCHLO()
340 std::move(crypto_negotiated_params_->initial_crypters.encrypter)); in DoSendCHLO()
343 std::move(crypto_negotiated_params_->initial_crypters.decrypter), in DoSendCHLO()
394 crypto_negotiated_params_, &error_details); in DoReceiveREJ()
530 crypto_negotiated_params_, &error_details); in DoReceiveSHLO()
545 CrypterPair* crypters = &crypto_negotiated_params_->forward_secure_crypters; in DoReceiveSHLO()
H A Dtls_client_handshaker.cc61 crypto_negotiated_params_(new QuicCryptoNegotiatedParameters), in TlsClientHandshaker()
251 return *crypto_negotiated_params_; in crypto_negotiated_params()
370 crypto_negotiated_params_->cipher_suite = SSL_CIPHER_get_value(cipher); in FinishHandshake()
372 crypto_negotiated_params_->key_exchange_group = SSL_get_curve_id(ssl()); in FinishHandshake()
373 crypto_negotiated_params_->peer_signature_algorithm = in FinishHandshake()
421 crypto_negotiated_params_->cipher_suite = SSL_CIPHER_get_value(cipher); in FinishHandshake()
423 crypto_negotiated_params_->key_exchange_group = SSL_get_curve_id(ssl()); in FinishHandshake()
424 crypto_negotiated_params_->peer_signature_algorithm = in FinishHandshake()
H A Dtls_server_handshaker.cc53 crypto_negotiated_params_(new QuicCryptoNegotiatedParameters), in TlsServerHandshaker()
134 return *crypto_negotiated_params_; in crypto_negotiated_params()
292 crypto_negotiated_params_->cipher_suite = SSL_CIPHER_get_value(cipher); in SetWriteSecret()
294 crypto_negotiated_params_->key_exchange_group = SSL_get_curve_id(ssl()); in SetWriteSecret()
322 crypto_negotiated_params_->cipher_suite = SSL_CIPHER_get_value(cipher); in FinishHandshake()
324 crypto_negotiated_params_->key_exchange_group = SSL_get_curve_id(ssl()); in FinishHandshake()
380 crypto_negotiated_params_->sni = in SelectCertificate()
H A Dtls_client_handshaker.h154 crypto_negotiated_params_; variable
H A Dquic_crypto_client_handshaker.h183 crypto_negotiated_params_; variable
H A Dtls_server_handshaker.h162 crypto_negotiated_params_; variable
H A Dquic_crypto_server_stream.h238 crypto_negotiated_params_; variable
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/third_party/quiche/src/quic/core/
H A Dquic_crypto_server_stream.cc74 crypto_negotiated_params_(new QuicCryptoNegotiatedParameters) {} in QuicCryptoServerStream()
205 std::move(crypto_negotiated_params_->initial_crypters.encrypter)); in FinishProcessingHandshakeMessageAfterProcessClientHello()
208 std::move(crypto_negotiated_params_->initial_crypters.decrypter), in FinishProcessingHandshakeMessageAfterProcessClientHello()
221 std::move(crypto_negotiated_params_->forward_secure_crypters.encrypter)); in FinishProcessingHandshakeMessageAfterProcessClientHello()
224 std::move(crypto_negotiated_params_->forward_secure_crypters.decrypter), in FinishProcessingHandshakeMessageAfterProcessClientHello()
254 *crypto_negotiated_params_, cached_network_params, std::move(cb)); in SendServerConfigUpdate()
354 crypto_negotiated_params_->channel_id.empty()) { in GetBase64SHA256ClientChannelID()
358 const std::string& channel_id(crypto_negotiated_params_->channel_id); in GetBase64SHA256ClientChannelID()
387 return *crypto_negotiated_params_; in crypto_negotiated_params()
472 crypto_negotiated_params_, signed_config_, in ProcessClientHello()
H A Dquic_crypto_client_handshaker.cc73 crypto_negotiated_params_(new QuicCryptoNegotiatedParameters) {} in QuicCryptoClientHandshaker()
158 return *crypto_negotiated_params_; in crypto_negotiated_params()
211 crypto_negotiated_params_, &error_details); in HandleServerConfigUpdateMessage()
329 /* demand_x509_proof= */ true, crypto_negotiated_params_, &out); in DoSendCHLO()
360 session()->connection()->random_generator(), crypto_negotiated_params_, in DoSendCHLO()
381 std::move(crypto_negotiated_params_->initial_crypters.encrypter)); in DoSendCHLO()
384 std::move(crypto_negotiated_params_->initial_crypters.decrypter), in DoSendCHLO()
438 crypto_negotiated_params_, &error_details); in DoReceiveREJ()
576 crypto_negotiated_params_, &error_details); in DoReceiveSHLO()
591 CrypterPair* crypters = &crypto_negotiated_params_->forward_secure_crypters; in DoReceiveSHLO()
H A Dtls_client_handshaker.cc40 crypto_negotiated_params_(new QuicCryptoNegotiatedParameters), in TlsClientHandshaker()
292 return *crypto_negotiated_params_; in crypto_negotiated_params()
407 crypto_negotiated_params_->cipher_suite = SSL_CIPHER_get_value(cipher); in FinishHandshake()
409 crypto_negotiated_params_->key_exchange_group = SSL_get_curve_id(ssl()); in FinishHandshake()
410 crypto_negotiated_params_->peer_signature_algorithm = in FinishHandshake()
H A Dtls_server_handshaker.cc94 crypto_negotiated_params_(new QuicCryptoNegotiatedParameters), in TlsServerHandshaker()
197 return *crypto_negotiated_params_; in crypto_negotiated_params()
355 crypto_negotiated_params_->cipher_suite = SSL_CIPHER_get_value(cipher); in SetWriteSecret()
357 crypto_negotiated_params_->key_exchange_group = SSL_get_curve_id(ssl()); in SetWriteSecret()
513 crypto_negotiated_params_->sni = in SelectCertificate()
H A Dquic_crypto_client_handshaker.h199 crypto_negotiated_params_; variable
H A Dtls_client_handshaker.h145 crypto_negotiated_params_; variable
H A Dquic_crypto_server_stream.h253 crypto_negotiated_params_; variable
H A Dtls_server_handshaker.h192 crypto_negotiated_params_; variable
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/quic/
H A Dmock_crypto_client_stream.cc73 crypto_negotiated_params_(new QuicCryptoNegotiatedParameters), in MockCryptoClientStream()
80 crypto_negotiated_params_->cipher_suite = 1; in MockCryptoClientStream()
227 return *crypto_negotiated_params_; in crypto_negotiated_params()
332 crypto_negotiated_params_->key_exchange = kC255; in FillCryptoParams()
333 crypto_negotiated_params_->aead = kAESG; in FillCryptoParams()
336 crypto_negotiated_params_->cipher_suite = TLS1_CK_AES_128_GCM_SHA256 & 0xffff; in FillCryptoParams()
337 crypto_negotiated_params_->key_exchange_group = SSL_CURVE_X25519; in FillCryptoParams()
338 crypto_negotiated_params_->peer_signature_algorithm = in FillCryptoParams()
H A Dmock_crypto_client_stream.h89 crypto_negotiated_params_; variable
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/quic/
H A Dmock_crypto_client_stream.cc73 crypto_negotiated_params_(new QuicCryptoNegotiatedParameters), in MockCryptoClientStream()
80 crypto_negotiated_params_->cipher_suite = 1; in MockCryptoClientStream()
252 return *crypto_negotiated_params_; in crypto_negotiated_params()
392 crypto_negotiated_params_->key_exchange = kC255; in FillCryptoParams()
393 crypto_negotiated_params_->aead = kAESG; in FillCryptoParams()
396 crypto_negotiated_params_->cipher_suite = TLS1_CK_AES_128_GCM_SHA256 & 0xffff; in FillCryptoParams()
397 crypto_negotiated_params_->key_exchange_group = SSL_CURVE_X25519; in FillCryptoParams()
398 crypto_negotiated_params_->peer_signature_algorithm = in FillCryptoParams()
H A Dmock_crypto_client_stream.h102 crypto_negotiated_params_; variable