Home
last modified time | relevance | path

Searched refs:cipher_suites (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/bearssl/tools/
H A Dnames.c48 const cipher_suite cipher_suites[] = { variable
598 for (u = 0; cipher_suites[u].name; u ++) { in get_suite_name()
599 if (cipher_suites[u].suite == suite) { in get_suite_name()
600 return cipher_suites[u].name; in get_suite_name()
636 for (u = 0; cipher_suites[u].name; u ++) { in uses_ecdhe()
637 if (cipher_suites[u].suite == suite) { in uses_ecdhe()
638 return (cipher_suites[u].req in uses_ecdhe()
664 for (u = 0; cipher_suites[u].name; u ++) { in list_names()
666 cipher_suites[u].name, in list_names()
667 cipher_suites[u].comment); in list_names()
[all …]
H A Dtwrch.c605 for (u = 0; cipher_suites[u].name; u ++) { in do_twrch()
606 if ((cipher_suites[u].req & REQ_TLS12) == 0 in do_twrch()
614 for (u = 0; cipher_suites[u].name; u ++) { in do_twrch()
615 if ((cipher_suites[u].req & REQ_TLS12) == 0 in do_twrch()
618 suites[num_suites ++] = cipher_suites[u]; in do_twrch()
H A Dclient.c860 for (u = 0; cipher_suites[u].name; u ++) { in do_client()
861 if ((cipher_suites[u].req & REQ_TLS12) == 0 in do_client()
869 for (u = 0; cipher_suites[u].name; u ++) { in do_client()
870 if ((cipher_suites[u].req & REQ_TLS12) == 0 in do_client()
873 suites[num_suites ++] = cipher_suites[u]; in do_client()
H A Dserver.c933 for (u = 0; cipher_suites[u].name; u ++) { in do_server()
934 if ((cipher_suites[u].req & REQ_TLS12) == 0 in do_server()
942 for (u = 0; cipher_suites[u].name; u ++) { in do_server()
943 if ((cipher_suites[u].req & REQ_TLS12) == 0 in do_server()
946 suites[num_suites ++] = cipher_suites[u]; in do_server()
H A Dbrssl.h249 extern const cipher_suite cipher_suites[];
/freebsd/contrib/wpa/src/tls/
H A Dtlsv1_server_i.h40 u16 cipher_suites[MAX_CIPHER_COUNT]; member
H A Dtlsv1_client_i.h46 u16 cipher_suites[MAX_CIPHER_COUNT]; member
H A Dtlsv1_server.c399 suites = conn->cipher_suites; in tlsv1_server_init()
694 suites = conn->cipher_suites; in tlsv1_server_set_cipher_list()
H A Dtlsv1_client.c485 suites = conn->cipher_suites; in tlsv1_client_init()
818 suites = conn->cipher_suites; in tlsv1_client_set_cipher_list()
H A Dtlsv1_server_read.c253 if (testing_cipher_suite_filter(conn, conn->cipher_suites[i])) in tls_process_client_hello()
259 if (!cipher_suite && tmp == conn->cipher_suites[i]) { in tls_process_client_hello()
H A Dtlsv1_client_write.c108 WPA_PUT_BE16(pos, conn->cipher_suites[i]); in tls_send_client_hello()
H A Dtlsv1_client_read.c175 if (cipher_suite == conn->cipher_suites[i]) in tls_process_server_hello()
/freebsd/crypto/openssl/ssl/
H A Dssl_lib.c5622 int ssl_cache_cipherlist(SSL *s, PACKET *cipher_suites, int sslv2format) in ssl_cache_cipherlist() argument
5628 if (PACKET_remaining(cipher_suites) == 0) { in ssl_cache_cipherlist()
5633 if (PACKET_remaining(cipher_suites) % n != 0) { in ssl_cache_cipherlist()
5643 size_t numciphers = PACKET_remaining(cipher_suites) / n; in ssl_cache_cipherlist()
5644 PACKET sslv2ciphers = *cipher_suites; in ssl_cache_cipherlist()
5679 } else if (!PACKET_memdup(cipher_suites, &s->s3.tmp.ciphers_raw, in ssl_cache_cipherlist()
5698 int bytes_to_cipher_list(SSL *s, PACKET *cipher_suites, in bytes_to_cipher_list() argument
5712 if (PACKET_remaining(cipher_suites) == 0) { in bytes_to_cipher_list()
5720 if (PACKET_remaining(cipher_suites) % n != 0) { in bytes_to_cipher_list()
5739 while (PACKET_copy_bytes(cipher_suites, cipher, n)) { in bytes_to_cipher_list()
[all …]
H A Dssl_local.h2402 __owur int ssl_cache_cipherlist(SSL *s, PACKET *cipher_suites, int sslv2format);
2403 __owur int bytes_to_cipher_list(SSL *s, PACKET *cipher_suites,
/freebsd/sys/compat/linuxkpi/common/include/net/
H A Dcfg80211.h1235 const uint32_t *cipher_suites; member
/freebsd/sys/contrib/dev/athk/ath12k/
H A Dmac.c7196 static const u32 cipher_suites[] = { in __ath12k_mac_register() local
7297 ar->hw->wiphy->cipher_suites = cipher_suites; in __ath12k_mac_register()
7298 ar->hw->wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites); in __ath12k_mac_register()
/freebsd/sys/contrib/dev/athk/ath11k/
H A Dmac.c9401 static const u32 cipher_suites[] = { in __ath11k_mac_register() local
9554 ar->hw->wiphy->cipher_suites = cipher_suites; in __ath11k_mac_register()
9555 ar->hw->wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites); in __ath11k_mac_register()
/freebsd/sys/contrib/dev/athk/ath10k/
H A Dmac.c9990 static const u32 cipher_suites[] = { local
10328 ar->hw->wiphy->cipher_suites = cipher_suites;
10335 ar->hw_params.n_cipher_suites > ARRAY_SIZE(cipher_suites)) {
/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Dmac80211.c460 hw->wiphy->cipher_suites = mvm->ciphers; in iwl_mvm_mac_setup_register()
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_80211.c5678 hw->wiphy->cipher_suites[i]);