/freebsd/contrib/bearssl/tools/ |
H A D | names.c | 48 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 D | twrch.c | 605 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 D | client.c | 860 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 D | server.c | 933 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 D | brssl.h | 249 extern const cipher_suite cipher_suites[];
|
/freebsd/contrib/wpa/src/tls/ |
H A D | tlsv1_server_i.h | 40 u16 cipher_suites[MAX_CIPHER_COUNT]; member
|
H A D | tlsv1_client_i.h | 46 u16 cipher_suites[MAX_CIPHER_COUNT]; member
|
H A D | tlsv1_server.c | 399 suites = conn->cipher_suites; in tlsv1_server_init() 694 suites = conn->cipher_suites; in tlsv1_server_set_cipher_list()
|
H A D | tlsv1_client.c | 485 suites = conn->cipher_suites; in tlsv1_client_init() 818 suites = conn->cipher_suites; in tlsv1_client_set_cipher_list()
|
H A D | tlsv1_server_read.c | 253 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 D | tlsv1_client_write.c | 108 WPA_PUT_BE16(pos, conn->cipher_suites[i]); in tls_send_client_hello()
|
H A D | tlsv1_client_read.c | 175 if (cipher_suite == conn->cipher_suites[i]) in tls_process_server_hello()
|
/freebsd/crypto/openssl/ssl/ |
H A D | ssl_lib.c | 5622 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 D | ssl_local.h | 2402 __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 D | cfg80211.h | 1235 const uint32_t *cipher_suites; member
|
/freebsd/sys/contrib/dev/athk/ath12k/ |
H A D | mac.c | 7196 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 D | mac.c | 9401 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 D | mac.c | 9990 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 D | mac80211.c | 460 hw->wiphy->cipher_suites = mvm->ciphers; in iwl_mvm_mac_setup_register()
|
/freebsd/sys/compat/linuxkpi/common/src/ |
H A D | linux_80211.c | 5678 hw->wiphy->cipher_suites[i]);
|