Home
last modified time | relevance | path

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

/freebsd-12.1/crypto/openssl/ssl/
H A Ds3_lib.c4141 unsigned long alg_k = 0, alg_a = 0, mask_k = 0, mask_a = 0; in ssl3_choose_cipher() local
4274 alg_a = c->algorithm_auth; in ssl3_choose_cipher()
4282 ok = (alg_k & mask_k) && (alg_a & mask_a); in ssl3_choose_cipher()
4285 alg_a, mask_k, mask_a, (void *)c, c->name); in ssl3_choose_cipher()
4307 if ((alg_k & SSL_kECDHE) && (alg_a & SSL_aECDSA) in ssl3_choose_cipher()
4337 uint32_t alg_k, alg_a = 0; in ssl3_get_req_cert_type() local
4343 ssl_set_sig_mask(&alg_a, s, SSL_SECOP_SIGALG_MASK); in ssl3_get_req_cert_type()
4367 if (!(alg_a & SSL_aRSA) && !WPACKET_put_bytes_u8(pkt, SSL3_CT_RSA_SIGN)) in ssl3_get_req_cert_type()
4371 if (!(alg_a & SSL_aDSS) && !WPACKET_put_bytes_u8(pkt, SSL3_CT_DSS_SIGN)) in ssl3_get_req_cert_type()
4380 && !(alg_a & SSL_aECDSA) in ssl3_get_req_cert_type()
/freebsd-12.1/crypto/openssl/ssl/statem/
H A Dextensions.c1028 unsigned long alg_k, alg_a; in final_ec_pt_formats() local
1034 alg_a = s->s3->tmp.new_cipher->algorithm_auth; in final_ec_pt_formats()
1045 && ((alg_k & SSL_kECDHE) || (alg_a & SSL_aECDSA))) { in final_ec_pt_formats()
H A 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()
H A Dstatem_clnt.c3578 long alg_k, alg_a; in ssl3_check_cert_and_algorithm() local
3581 alg_a = s->s3->tmp.new_cipher->algorithm_auth; in ssl3_check_cert_and_algorithm()
3584 if (!(alg_a & SSL_aCERT)) in ssl3_check_cert_and_algorithm()
3591 if (clu == NULL || (alg_a & clu->amask) == 0) { in ssl3_check_cert_and_algorithm()
H A Dstatem_srvr.c3322 unsigned long alg_a; in tls_process_cke_gost() local
3328 alg_a = s->s3->tmp.new_cipher->algorithm_auth; in tls_process_cke_gost()
3329 if (alg_a & SSL_aGOST12) { in tls_process_cke_gost()
3340 } else if (alg_a & SSL_aGOST01) { in tls_process_cke_gost()
H A Dextensions_srvr.c1377 unsigned long alg_a = s->s3->tmp.new_cipher->algorithm_auth; in tls_construct_stoc_ec_pt_formats() local
1378 int using_ecc = ((alg_k & SSL_kECDHE) || (alg_a & SSL_aECDSA)) in tls_construct_stoc_ec_pt_formats()