Searched refs:alg_a (Results 1 – 6 of 6) sorted by relevance
/openssl/ssl/ |
H A D | s3_lib.c | 4244 unsigned long alg_k = 0, alg_a = 0, mask_k = 0, mask_a = 0; in ssl3_choose_cipher() local 4373 alg_a = c->algorithm_auth; in ssl3_choose_cipher() 4381 ok = (alg_k & mask_k) && (alg_a & mask_a); in ssl3_choose_cipher() 4384 ok, alg_k, alg_a, mask_k, mask_a, (void *)c, c->name); in ssl3_choose_cipher() 4403 if ((alg_k & SSL_kECDHE) && (alg_a & SSL_aECDSA) in ssl3_choose_cipher() 4436 uint32_t alg_k, alg_a = 0; in ssl3_get_req_cert_type() local 4442 ssl_set_sig_mask(&alg_a, s, SSL_SECOP_SIGALG_MASK); in ssl3_get_req_cert_type() 4464 if (!(alg_a & SSL_aDSS) in ssl3_get_req_cert_type() 4468 if (!(alg_a & SSL_aRSA) && !WPACKET_put_bytes_u8(pkt, SSL3_CT_RSA_SIGN)) in ssl3_get_req_cert_type() 4470 if (!(alg_a & SSL_aDSS) && !WPACKET_put_bytes_u8(pkt, SSL3_CT_DSS_SIGN)) in ssl3_get_req_cert_type() [all …]
|
/openssl/ssl/statem/ |
H A D | extensions.c | 1093 unsigned long alg_k, alg_a; in final_ec_pt_formats() local 1099 alg_a = s->s3.tmp.new_cipher->algorithm_auth; in final_ec_pt_formats() 1110 && ((alg_k & SSL_kECDHE) || (alg_a & SSL_aECDSA))) { in final_ec_pt_formats()
|
H A D | extensions_clnt.c | 142 unsigned long alg_k, alg_a; in use_ecc() local 158 alg_a = c->algorithm_auth; in use_ecc() 160 || (alg_a & SSL_aECDSA) in use_ecc()
|
H A D | statem_clnt.c | 3921 long alg_k, alg_a; in ssl3_check_cert_and_algorithm() local 3925 alg_a = s->s3.tmp.new_cipher->algorithm_auth; in ssl3_check_cert_and_algorithm() 3928 if (!(alg_a & SSL_aCERT)) in ssl3_check_cert_and_algorithm() 3936 if (clu == NULL || (alg_a & clu->amask) == 0) { in ssl3_check_cert_and_algorithm()
|
H A D | statem_srvr.c | 3210 unsigned long alg_a; in tls_process_cke_gost() local 3217 alg_a = s->s3.tmp.new_cipher->algorithm_auth; in tls_process_cke_gost() 3218 if (alg_a & SSL_aGOST12) { in tls_process_cke_gost() 3229 } else if (alg_a & SSL_aGOST01) { in tls_process_cke_gost()
|
H A D | extensions_srvr.c | 1361 unsigned long alg_a = s->s3.tmp.new_cipher->algorithm_auth; in tls_construct_stoc_ec_pt_formats() local 1362 int using_ecc = ((alg_k & SSL_kECDHE) || (alg_a & SSL_aECDSA)) in tls_construct_stoc_ec_pt_formats()
|
Completed in 46 milliseconds