Searched refs:cipher_suites (Results 1 - 14 of 14) sorted by relevance

/freebsd-13-stable/contrib/bearssl/tools/
H A Dnames.c48 const cipher_suite cipher_suites[] = { variable
598 for (u = 0; cipher_suites[u].name; u ++) {
599 if (cipher_suites[u].suite == suite) {
600 return cipher_suites[u].name;
636 for (u = 0; cipher_suites[u].name; u ++) {
637 if (cipher_suites[u].suite == suite) {
638 return (cipher_suites[u].req
664 for (u = 0; cipher_suites[u].name; u ++) {
666 cipher_suites[u].name,
667 cipher_suites[
[all...]
H A Dclient.c860 for (u = 0; cipher_suites[u].name; u ++) {
861 if ((cipher_suites[u].req & REQ_TLS12) == 0
869 for (u = 0; cipher_suites[u].name; u ++) {
870 if ((cipher_suites[u].req & REQ_TLS12) == 0
873 suites[num_suites ++] = cipher_suites[u];
H A Dserver.c933 for (u = 0; cipher_suites[u].name; u ++) {
934 if ((cipher_suites[u].req & REQ_TLS12) == 0
942 for (u = 0; cipher_suites[u].name; u ++) {
943 if ((cipher_suites[u].req & REQ_TLS12) == 0
946 suites[num_suites ++] = cipher_suites[u];
H A Dtwrch.c605 for (u = 0; cipher_suites[u].name; u ++) {
606 if ((cipher_suites[u].req & REQ_TLS12) == 0
614 for (u = 0; cipher_suites[u].name; u ++) {
615 if ((cipher_suites[u].req & REQ_TLS12) == 0
618 suites[num_suites ++] = cipher_suites[u];
H A Dbrssl.h249 extern const cipher_suite cipher_suites[];
/freebsd-13-stable/contrib/wpa/src/tls/
H A Dtlsv1_client_i.h46 u16 cipher_suites[MAX_CIPHER_COUNT]; member in struct:tlsv1_client
H A Dtlsv1_server_i.h40 u16 cipher_suites[MAX_CIPHER_COUNT]; member in struct:tlsv1_server
H A Dtlsv1_client.c461 suites = conn->cipher_suites;
794 suites = conn->cipher_suites;
H A Dtlsv1_server.c399 suites = conn->cipher_suites;
694 suites = conn->cipher_suites;
H A Dtlsv1_server_read.c231 /* CipherSuite cipher_suites<2..2^16-1> */
234 "Truncated ClientHello/cipher_suites len");
240 tlsv1_server_log(conn, "Truncated ClientHello/cipher_suites");
246 tlsv1_server_log(conn, "Odd len ClientHello/cipher_suites");
253 if (testing_cipher_suite_filter(conn, conn->cipher_suites[i]))
259 if (!cipher_suite && tmp == conn->cipher_suites[i]) {
H A Dtlsv1_client_write.c116 /* CipherSuite cipher_suites<2..2^16-1> */
120 WPA_PUT_BE16(pos, conn->cipher_suites[i]);
H A Dtlsv1_client_read.c175 if (cipher_suite == conn->cipher_suites[i])
/freebsd-13-stable/crypto/openssl/ssl/
H A Dssl_lib.c5392 int ssl_cache_cipherlist(SSL *s, PACKET *cipher_suites, int sslv2format) argument
5398 if (PACKET_remaining(cipher_suites) == 0) {
5404 if (PACKET_remaining(cipher_suites) % n != 0) {
5415 size_t numciphers = PACKET_remaining(cipher_suites) / n;
5416 PACKET sslv2ciphers = *cipher_suites;
5453 } else if (!PACKET_memdup(cipher_suites, &s->s3->tmp.ciphers_raw,
5473 int bytes_to_cipher_list(SSL *s, PACKET *cipher_suites, argument
5487 if (PACKET_remaining(cipher_suites) == 0) {
5496 if (PACKET_remaining(cipher_suites) % n != 0) {
5517 while (PACKET_copy_bytes(cipher_suites, ciphe
[all...]
H A Dssl_local.h2277 __owur int ssl_cache_cipherlist(SSL *s, PACKET *cipher_suites, int sslv2format);
2278 __owur int bytes_to_cipher_list(SSL *s, PACKET *cipher_suites,

Completed in 279 milliseconds