Home
last modified time | relevance | path

Searched refs:ciphersuites (Results 1 – 25 of 35) sorted by relevance

12

/freebsd-14.2/crypto/openssl/util/perl/TLSProxy/
H A DClientHello.pm37 $self->{ciphersuites} = [];
59 my @ciphersuites = unpack('n*', substr($self->data, $ptr,
88 $self->ciphersuites(\@ciphersuites);
142 $data .= pack("n*", @{$self->ciphersuites});
208 sub ciphersuites subroutine
212 $self->{ciphersuites} = shift;
214 return $self->{ciphersuites};
/freebsd-14.2/crypto/openssl/test/recipes/
H A D80-test_ssl_old.t454 my %ciphersuites = ();
468 $ciphersuites{$protocol} = [ map { s|\R||; split(/:/, $_) }
470 $protocolciphersuitecount += scalar @{$ciphersuites{$protocol}};
476 if $protocolciphersuitecount + scalar(keys %ciphersuites) == 0;
482 + scalar(keys %ciphersuites);
490 foreach my $protocol (sort keys %ciphersuites) {
495 my $ciphersuites = "";
496 foreach my $cipher (@{$ciphersuites{$protocol}}) {
502 $ciphersuites = $cipher;
509 "-ciphersuites", $ciphersuites,
H A D70-test_tls13downgrade.t110 my @ciphersuites = (TLSProxy::Message::CIPHER_RSA_WITH_AES_128_CBC_SHA);
111 $message->ciphersuite_len(2 * scalar @ciphersuites);
112 $message->ciphersuites(\@ciphersuites);
H A D70-test_tls13hrr.t163 my @ciphersuites = (TLSProxy::Message::CIPHER_TLS13_AES_128_GCM_SHA256);
164 $ch1->ciphersuite_len(2 * scalar @ciphersuites);
165 $ch1->ciphersuites(\@ciphersuites);
H A D70-test_renegotiation.t126 $message->ciphersuites(\@ciphersuite);
/freebsd-14.2/crypto/openssl/apps/
H A Dciphers.c103 char *ciphers = NULL, *prog, *convert = NULL, *ciphersuites = NULL; in ciphers_main() local
166 ciphersuites = opt_arg(); in ciphers_main()
207 if (ciphersuites != NULL && !SSL_CTX_set_ciphersuites(ctx, ciphersuites)) { in ciphers_main()
H A Ds_time.c122 char *cipher = NULL, *ciphersuites = NULL; in s_time_main() local
193 ciphersuites = opt_arg(); in s_time_main()
257 if (ciphersuites != NULL && !SSL_CTX_set_ciphersuites(ctx, ciphersuites)) in s_time_main()
/freebsd-14.2/crypto/openssl/doc/man3/
H A DSSL_CTX_set_cipher_list.pod32 ciphersuites. Use SSL_CTX_set_ciphersuites() to configure those.
38 ciphersuites for B<ctx>. This is a simple colon (":") separated list of TLSv1.3
60 configures the ciphersuites for B<ssl>.
64 cipher string for TLSv1.3 ciphersuites.
H A DSSL_CTX_set_tmp_dh_callback.pod37 Some ciphersuites may use ephemeral Diffie-Hellman (DH) key exchange. In these
67 If there is no certificate (e.g. for PSK ciphersuites), then it it will be
98 cipher suites. Modern OpenSSL does not support export ciphersuites and so these
H A DSSL_CONF_cmd.pod173 combined with any configured TLSv1.3 ciphersuites. Note: syntax checking
177 =item B<-ciphersuites> I<1.3ciphers>
179 Sets the available ciphersuites for TLSv1.3 to value. This is a
181 list will be combined any configured TLSv1.2 and below ciphersuites.
279 combined with any configured TLSv1.3 ciphersuites. Note: syntax
285 Sets the available ciphersuites for TLSv1.3 to B<value>. This is a
287 list will be combined any configured TLSv1.2 and below ciphersuites.
532 by the negotiated ciphersuites and extensions. Equivalent to
H A DSSL_get_ciphers.pod75 available shared ciphersuites whether or not they are enabled. This is a server
H A DSSL_CTX_use_psk_identity_hint.pod59 PSK ciphersuites for TLSv1.2 and below may call SSL_CTX_use_psk_identity_hint()
H A DSSL_CTX_set_psk_client_callback.pod101 A client application wishing to use PSK ciphersuites for TLSv1.2 and below must
H A DSSL_CTX_set_options.pod159 negotiated ciphersuites and extensions. The specific ciphersuites and extensions
H A DSSL_CIPHER_get_name.pod129 ciphersuite was first defined because some ciphersuites are backwards compatible
/freebsd-14.2/crypto/openssl/doc/man1/
H A Dopenssl-s_time.pod.in27 [B<-ciphersuites> I<val>]
100 This list will be combined with any TLSv1.3 ciphersuites that have been
105 =item B<-ciphersuites> I<val>
107 This allows the TLSv1.3 ciphersuites sent by the client to be modified. This
108 list will be combined with any TLSv1.2 and below ciphersuites that have been
H A Dopenssl-ciphers.pod.in25 [B<-ciphersuites> I<val>]
95 =item B<-ciphersuites> I<val>
97 Sets the list of TLSv1.3 ciphersuites. This list will be combined with any
98 TLSv1.2 and below ciphersuites that have been configured. The format for this
106 A cipher list of TLSv1.2 and below ciphersuites to convert to a cipher
107 preference list. This list will be combined with any TLSv1.3 ciphersuites that
H A Dopenssl-s_server.pod.in110 [B<-ciphersuites> I<val>]
658 This allows the list of TLSv1.2 and below ciphersuites used by the server to be
659 modified. This list is combined with any TLSv1.3 ciphersuites that have been
665 =item B<-ciphersuites> I<val>
667 This allows the list of TLSv1.3 ciphersuites used by the server to be modified.
668 This list is combined with any TLSv1.2 and below ciphersuites that have been
H A Dopenssl-s_client.pod.in93 [B<-ciphersuites> I<val>]
641 This list will be combined with any TLSv1.3 ciphersuites that have been
646 =item B<-ciphersuites> I<val>
648 This allows the TLSv1.3 ciphersuites sent by the client to be modified. This
649 list will be combined with any TLSv1.2 and below ciphersuites that have been
/freebsd-14.2/crypto/openssl/test/
H A Dssl_old_test.c612 static char *ciphersuites = NULL; variable
1057 ciphersuites = *(++argv); in main()
1466 if (ciphersuites != NULL) { in main()
1467 if (!SSL_CTX_set_ciphersuites(c_ctx, ciphersuites) in main()
1468 || !SSL_CTX_set_ciphersuites(s_ctx, ciphersuites) in main()
1469 || !SSL_CTX_set_ciphersuites(s_ctx2, ciphersuites)) { in main()
H A Dsslapitest.c3884 static const char *ciphersuites[] = { variable
3925 if (!TEST_true(SSL_CTX_set_ciphersuites(sctx, ciphersuites[cipher])) in early_data_skip_helper()
4083 idx % OSSL_NELEM(ciphersuites), in test_early_data_skip()
4084 idx / OSSL_NELEM(ciphersuites)); in test_early_data_skip()
4094 idx % OSSL_NELEM(ciphersuites), in test_early_data_skip_hrr()
4095 idx / OSSL_NELEM(ciphersuites)); in test_early_data_skip_hrr()
4106 idx % OSSL_NELEM(ciphersuites), in test_early_data_skip_hrr_fail()
4107 idx / OSSL_NELEM(ciphersuites)); in test_early_data_skip_hrr_fail()
4117 idx % OSSL_NELEM(ciphersuites), in test_early_data_skip_abort()
4118 idx / OSSL_NELEM(ciphersuites)); in test_early_data_skip_abort()
[all …]
/freebsd-14.2/crypto/openssl/
H A DCHANGES.md4766 DES and RC4 ciphersuites.
7642 ECDH ciphersuites.
8437 ciphersuites. At present only RSA key exchange ciphersuites work with
8707 ECDH ciphersuites.
9651 the order of disabled ciphersuites such that those ciphersuites
9654 than other disabled ciphersuites the next time ciphersuites are
10034 New ciphersuites:
10879 authentication-only ciphersuites.
10999 * Disable rogue ciphersuites:
12141 * Disable rogue ciphersuites:
[all …]
H A DNEWS.md325 * Support for all five RFC8446 ciphersuites
448 * CCM ciphersuites
461 * RC4 removed from DEFAULT ciphersuites in libssl
941 * Support ECDH ciphersuites for certificates using SHA2 algorithms.
984 * Supported points format extension for ECC ciphersuites.
1373 master secret in DH ciphersuites.
/freebsd-14.2/crypto/openssl/ssl/statem/
H A Dstatem_srvr.c1474 if (!PACKET_get_sub_packet(pkt, &clienthello->ciphersuites, in tls_process_client_hello()
1538 if (!PACKET_get_length_prefixed_2(pkt, &clienthello->ciphersuites)) { in tls_process_client_hello()
1699 if (!ssl_cache_cipherlist(s, &clienthello->ciphersuites, in tls_early_post_process_client_hello()
1701 !bytes_to_cipher_list(s, &clienthello->ciphersuites, &ciphers, &scsvs, in tls_early_post_process_client_hello()
/freebsd-14.2/crypto/openssl/ssl/
H A Dssl_ciph.c1307 STACK_OF(SSL_CIPHER) *ciphersuites = (STACK_OF(SSL_CIPHER) *)arg; in ciphersuite_cb()
1324 if (!sk_SSL_CIPHER_push(ciphersuites, cipher)) { in ciphersuite_cb()

12