Lines Matching refs:alg_k
351 unsigned long alg_k = s->s3.tmp.new_cipher->algorithm_mkey; in send_server_key_exchange() local
361 if (alg_k & (SSL_kDHE | SSL_kECDHE) in send_server_key_exchange()
368 || ((alg_k & (SSL_kPSK | SSL_kRSAPSK)) in send_server_key_exchange()
371 || (alg_k & (SSL_PSK & (SSL_kDHEPSK | SSL_kECDHEPSK))) in send_server_key_exchange()
375 || (alg_k & SSL_kSRP) in send_server_key_exchange()
3386 unsigned long alg_k; in tls_process_client_key_exchange() local
3388 alg_k = s->s3.tmp.new_cipher->algorithm_mkey; in tls_process_client_key_exchange()
3391 if ((alg_k & SSL_PSK) && !tls_process_cke_psk_preamble(s, pkt)) { in tls_process_client_key_exchange()
3396 if (alg_k & SSL_kPSK) { in tls_process_client_key_exchange()
3407 } else if (alg_k & (SSL_kRSA | SSL_kRSAPSK)) { in tls_process_client_key_exchange()
3412 } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) { in tls_process_client_key_exchange()
3417 } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) { in tls_process_client_key_exchange()
3422 } else if (alg_k & SSL_kSRP) { in tls_process_client_key_exchange()
3427 } else if (alg_k & SSL_kGOST) { in tls_process_client_key_exchange()
3432 } else if (alg_k & SSL_kGOST18) { in tls_process_client_key_exchange()