HomeSort by relevance Sort by last modified time
    Searched refs:new_cipher (Results 1 - 12 of 12) sorted by null

  /external/boringssl/src/ssl/
handshake_server.cc 550 hs->new_cipher =
552 if (hs->new_cipher == NULL) {
638 hs->new_session->cipher = hs->new_cipher;
648 if (!ssl_cipher_uses_certificate_auth(hs->new_cipher)) {
669 if (!hs->transcript.InitHash(ssl_protocol_version(ssl), hs->new_cipher) ||
692 (hs->new_cipher->algorithm_mkey & SSL_kECDHE) == 0) {
738 !CBB_add_u16(&body, ssl_cipher_get_value(hs->new_cipher)) ||
758 if (ssl_cipher_uses_certificate_auth(hs->new_cipher)) {
785 uint32_t alg_k = hs->new_cipher->algorithm_mkey;
786 uint32_t alg_a = hs->new_cipher->algorithm_auth
    [all...]
handshake_client.cc 721 hs->new_cipher = cipher;
725 if (!hs->transcript.InitHash(ssl_protocol_version(ssl), hs->new_cipher) ||
735 !ssl_cipher_uses_certificate_auth(hs->new_cipher)) {
802 if (!ssl_cipher_uses_certificate_auth(hs->new_cipher)) {
900 if (!ssl_cipher_uses_certificate_auth(hs->new_cipher)) {
928 if (ssl_cipher_requires_server_key_exchange(hs->new_cipher)) {
942 uint32_t alg_k = hs->new_cipher->algorithm_mkey;
943 uint32_t alg_a = hs->new_cipher->algorithm_auth
    [all...]
tls13_server.cc 239 hs->new_cipher = choose_tls13_cipher(ssl, &client_hello);
240 if (hs->new_cipher == NULL) {
256 if (!hs->transcript.InitHash(ssl_protocol_version(ssl), hs->new_cipher)) {
425 hs->new_session->cipher = hs->new_cipher;
447 ssl_get_handshake_digest(ssl_protocol_version(ssl), hs->new_cipher));
500 !CBB_add_u16(&body, ssl_cipher_get_value(hs->new_cipher)) ||
570 !CBB_add_u16(&body, ssl_cipher_get_value(hs->new_cipher)) ||
    [all...]
tls13_client.cc 106 hs->new_cipher = cipher;
108 if (!hs->transcript.InitHash(ssl_protocol_version(ssl), hs->new_cipher) ||
268 hs->new_cipher != cipher) {
345 hs->new_cipher = cipher;
t1_enc.cc 298 hs->new_cipher, {});
t1_lib.cc     [all...]
tls13_enc.cc 51 if (!init_key_schedule(hs, ssl_protocol_version(hs->ssl), hs->new_cipher)) {
ssl_cert.cc 749 if (!(hs->new_cipher->algorithm_auth & ssl_cipher_auth_mask_for_key(pkey))) {
ssl_session.cc 645 hs->new_cipher == session->cipher &&
    [all...]
internal.h 1421 const SSL_CIPHER *new_cipher = nullptr; member in struct:bssl::SSL_HANDSHAKE
    [all...]
ssl_lib.cc     [all...]
  /external/scapy/scapy/layers/
ipsec.py 269 def new_cipher(self, key, mode_iv, digest=None): member in class:CryptAlgo
343 cipher = self.new_cipher(key, mode_iv)
378 cipher = self.new_cipher(key, mode_iv, icv)
    [all...]

Completed in 559 milliseconds