Home
last modified time | relevance | path

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

/freebsd-12-stable/crypto/openssl/apps/
Dciphers.c97 char *ciphers = NULL, *prog, *convert = NULL, *ciphersuites = NULL; in ciphers_main() local
160 ciphersuites = opt_arg(); in ciphers_main()
196 if (ciphersuites != NULL && !SSL_CTX_set_ciphersuites(ctx, ciphersuites)) { in ciphers_main()
Ds_time.c97 char *CApath = NULL, *CAfile = NULL, *cipher = NULL, *ciphersuites = NULL; in s_time_main() local
163 ciphersuites = opt_arg(); in s_time_main()
204 if (ciphersuites != NULL && !SSL_CTX_set_ciphersuites(ctx, ciphersuites)) in s_time_main()
/freebsd-12-stable/crypto/openssl/doc/man3/
DSSL_CTX_set_cipher_list.pod27 ciphersuites. Use SSL_CTX_set_ciphersuites() to configure those.
33 ciphersuites for B<ctx>. This is a simple colon (":") separated list of TLSv1.3
55 configures the ciphersuites for B<ssl>.
DSSL_CONF_cmd.pod103 combined with any configured TLSv1.3 ciphersuites. Note: syntax checking
107 =item B<-ciphersuites>
109 Sets the available ciphersuites for TLSv1.3 to value. This is a simple colon
111 list will be combined any configured TLSv1.2 and below ciphersuites.
257 combined with any configured TLSv1.3 ciphersuites. Note: syntax
263 Sets the available ciphersuites for TLSv1.3 to B<value>. This is a simple colon
265 list will be combined any configured TLSv1.2 and below ciphersuites.
DSSL_get_ciphers.pod75 available shared ciphersuites whether or not they are enabled. This is a server
DSSL_CTX_use_psk_identity_hint.pod59 PSK ciphersuites for TLSv1.2 and below may call SSL_CTX_use_psk_identity_hint()
DSSL_CTX_set_psk_client_callback.pod101 A client application wishing to use PSK ciphersuites for TLSv1.2 and below must
DSSL_CIPHER_get_name.pod129 ciphersuite was first defined because some ciphersuites are backwards compatible
/freebsd-12-stable/crypto/openssl/doc/man1/
Ds_time.pod28 [B<-ciphersuites val>]
136 This list will be combined with any TLSv1.3 ciphersuites that have been
141 =item B<-ciphersuites val>
143 This allows the TLSv1.3 ciphersuites sent by the client to be modified. This
144 list will be combined with any TLSv1.2 and below ciphersuites that have been
Dciphers.pod25 [B<-ciphersuites val>]
91 =item B<-ciphersuites val>
93 Sets the list of TLSv1.3 ciphersuites. This list will be combined with any
94 TLSv1.2 and below ciphersuites that have been configured. The format for this
102 A cipher list of TLSv1.2 and below ciphersuites to convert to a cipher
103 preference list. This list will be combined with any TLSv1.3 ciphersuites that
Ds_server.pod117 [B<-ciphersuites val>]
598 This allows the list of TLSv1.2 and below ciphersuites used by the server to be
599 modified. This list is combined with any TLSv1.3 ciphersuites that have been
605 =item B<-ciphersuites val>
607 This allows the list of TLSv1.3 ciphersuites used by the server to be modified.
608 This list is combined with any TLSv1.2 and below ciphersuites that have been
Ds_client.pod117 [B<-ciphersuites val>]
582 This list will be combined with any TLSv1.3 ciphersuites that have been
587 =item B<-ciphersuites val>
589 This allows the TLSv1.3 ciphersuites sent by the client to be modified. This
590 list will be combined with any TLSv1.2 and below ciphersuites that have been
/freebsd-12-stable/crypto/openssl/
DCHANGES330 *) Add ciphersuites based on DHE_PSK (RFC 4279) and ECDHE_PSK (RFC 5489)
331 to the list of ciphersuites providing Perfect Forward Secrecy as
1086 *) Added a new API for TLSv1.3 ciphersuites:
1115 configuration. TLSv1.3 ciphersuites are not compatible with TLSv1.2 and
1116 below. Similarly TLSv1.2 ciphersuites are not compatible with TLSv1.3.
1118 would otherwise inadvertently disable all TLSv1.3 ciphersuites the
1620 default in OpenSSL DHE based SSL/TLS ciphersuites. Note: This issue is very
1631 TLS connections using *-CHACHA20-POLY1305 ciphersuites are susceptible to
1970 *) RC4 based libssl ciphersuites are now classed as "weak" ciphers and are
2165 support for GOST ciphersuites (these are only activated if a GOST engine
[all …]
DNEWS161 o Support for all five RFC8446 ciphersuites
259 o CCM ciphersuites
272 o RC4 removed from DEFAULT ciphersuites in libssl
503 o Support ECDH ciphersuites for certificates using SHA2 algorithms.
546 o Supported points format extension for ECC ciphersuites.
932 master secret in DH ciphersuites.
DINSTALL411 Don't build support for GOST based ciphersuites. Note that
412 if this feature is enabled then GOST ciphersuites are only
458 Don't build support for Pre-Shared Key based ciphersuites.
478 Don't build support for SRP or SRP based ciphersuites.
549 (e.g. RC4 based ciphersuites).
/freebsd-12-stable/crypto/openssl/ssl/statem/
Dstatem_srvr.c1489 if (!PACKET_get_sub_packet(pkt, &clienthello->ciphersuites, in tls_process_client_hello()
1558 if (!PACKET_get_length_prefixed_2(pkt, &clienthello->ciphersuites)) { in tls_process_client_hello()
1734 if (!ssl_cache_cipherlist(s, &clienthello->ciphersuites, in tls_early_post_process_client_hello()
1736 !bytes_to_cipher_list(s, &clienthello->ciphersuites, &ciphers, &scsvs, in tls_early_post_process_client_hello()
/freebsd-12-stable/crypto/openssl/ssl/
Dssl_ciph.c1277 STACK_OF(SSL_CIPHER) *ciphersuites = (STACK_OF(SSL_CIPHER) *)arg; in ciphersuite_cb()
1296 if (!sk_SSL_CIPHER_push(ciphersuites, cipher)) { in ciphersuite_cb()
Dssl_local.h680 PACKET ciphersuites; member
Dssl_lib.c5170 *out = PACKET_data(&s->clienthello->ciphersuites); in SSL_client_hello_get0_ciphers()
5171 return PACKET_remaining(&s->clienthello->ciphersuites); in SSL_client_hello_get0_ciphers()
/freebsd-12-stable/contrib/unbound/util/
Dconfiglexer.lex264 tls-ciphersuites{COLON} { YDVAR(1, VAR_TLS_CIPHERSUITES) }
/freebsd-12-stable/crypto/openssl/crypto/objects/
Dobjects.txt1528 # Synthetic composite ciphersuites
/freebsd-12-stable/contrib/unbound/doc/
Dexample.conf.in886 …# tls-ciphersuites: "TLS_AES_128_GCM_SHA256:TLS_AES_128_CCM_8_SHA256:TLS_AES_128_CCM_SHA256:TLS_AE…
DChangelog3151 - Patch from Manabu Sonoda with tls-ciphers and tls-ciphersuites