Home
last modified time | relevance | path

Searched refs:alg_a (Results 1 – 9 of 9) sorted by relevance

/third_party/boringssl/src/ssl/
Dhandshake_client.cc949 uint32_t alg_a = hs->new_cipher->algorithm_auth; in do_read_server_key_exchange() local
951 if (alg_a & SSL_aPSK) { in do_read_server_key_exchange()
1088 assert(alg_a == SSL_aPSK); in do_read_server_key_exchange()
1250 uint32_t alg_a = hs->new_cipher->algorithm_auth; in do_send_client_key_exchange() local
1276 if (alg_a & SSL_aPSK) { in do_send_client_key_exchange()
1375 if (alg_a & SSL_aPSK) { in do_send_client_key_exchange()
Dhandshake_server.cc953 uint32_t alg_a = hs->new_cipher->algorithm_auth; in do_send_server_certificate() local
955 ((alg_a & SSL_aPSK) && hs->config->psk_identity_hint)) { in do_send_server_certificate()
966 if (alg_a & SSL_aPSK) { in do_send_server_certificate()
1215 uint32_t alg_a = hs->new_cipher->algorithm_auth; in do_read_client_key_exchange() local
1218 if (alg_a & SSL_aPSK) { in do_read_client_key_exchange()
1350 if (alg_a & SSL_aPSK) { in do_read_client_key_exchange()
Dt1_lib.cc1811 const uint32_t alg_a = hs->new_cipher->algorithm_auth; in ext_ec_point_add_serverhello() local
1812 const bool using_ecc = (alg_k & SSL_kECDHE) || (alg_a & SSL_aECDSA); in ext_ec_point_add_serverhello()
/third_party/openssl/ssl/
Ds3_lib.c4132 unsigned long alg_k = 0, alg_a = 0, mask_k = 0, mask_a = 0; in ssl3_choose_cipher() local
4265 alg_a = c->algorithm_auth; in ssl3_choose_cipher()
4273 ok = (alg_k & mask_k) && (alg_a & mask_a); in ssl3_choose_cipher()
4276 alg_a, mask_k, mask_a, (void *)c, c->name); in ssl3_choose_cipher()
4298 if ((alg_k & SSL_kECDHE) && (alg_a & SSL_aECDSA) in ssl3_choose_cipher()
4328 uint32_t alg_k, alg_a = 0; in ssl3_get_req_cert_type() local
4334 ssl_set_sig_mask(&alg_a, s, SSL_SECOP_SIGALG_MASK); in ssl3_get_req_cert_type()
4358 if (!(alg_a & SSL_aRSA) && !WPACKET_put_bytes_u8(pkt, SSL3_CT_RSA_SIGN)) in ssl3_get_req_cert_type()
4362 if (!(alg_a & SSL_aDSS) && !WPACKET_put_bytes_u8(pkt, SSL3_CT_DSS_SIGN)) in ssl3_get_req_cert_type()
4371 && !(alg_a & SSL_aECDSA) in ssl3_get_req_cert_type()
/third_party/openssl/ssl/statem/
Dextensions.c1031 unsigned long alg_k, alg_a; in final_ec_pt_formats() local
1037 alg_a = s->s3->tmp.new_cipher->algorithm_auth; in final_ec_pt_formats()
1048 && ((alg_k & SSL_kECDHE) || (alg_a & SSL_aECDSA))) { in final_ec_pt_formats()
Dextensions_clnt.c119 unsigned long alg_k, alg_a; in use_ecc() local
132 alg_a = c->algorithm_auth; in use_ecc()
134 || (alg_a & SSL_aECDSA) in use_ecc()
Dstatem_clnt.c3585 long alg_k, alg_a; in ssl3_check_cert_and_algorithm() local
3588 alg_a = s->s3->tmp.new_cipher->algorithm_auth; in ssl3_check_cert_and_algorithm()
3591 if (!(alg_a & SSL_aCERT)) in ssl3_check_cert_and_algorithm()
3598 if (clu == NULL || (alg_a & clu->amask) == 0) { in ssl3_check_cert_and_algorithm()
Dstatem_srvr.c3356 unsigned long alg_a; in tls_process_cke_gost() local
3362 alg_a = s->s3->tmp.new_cipher->algorithm_auth; in tls_process_cke_gost()
3363 if (alg_a & SSL_aGOST12) { in tls_process_cke_gost()
3374 } else if (alg_a & SSL_aGOST01) { in tls_process_cke_gost()
Dextensions_srvr.c1388 unsigned long alg_a = s->s3->tmp.new_cipher->algorithm_auth; in tls_construct_stoc_ec_pt_formats() local
1389 int using_ecc = ((alg_k & SSL_kECDHE) || (alg_a & SSL_aECDSA)) in tls_construct_stoc_ec_pt_formats()