Home
last modified time | relevance | path

Searched refs:set_ciphersuites (Results 1 – 7 of 7) sorted by relevance

/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dconnector.rs246 ctx.set_ciphersuites( in mozilla_intermediate_v5()
264 ctx.set_ciphersuites( in mozilla_modern_v5()
Dmod.rs1084 pub fn set_ciphersuites(&mut self, cipher_list: &str) -> Result<(), ErrorStack> { in set_ciphersuites() method
3333 pub fn set_ciphersuites(&mut self, cipher_list: &str) -> Result<(), ErrorStack> { in set_ciphersuites() method
/third_party/openssl/ssl/
Dssl_ciph.c1331 static __owur int set_ciphersuites(STACK_OF(SSL_CIPHER) **currciphers, const char *str) in set_ciphersuites() function
1416 int ret = set_ciphersuites(&(ctx->tls13_ciphersuites), str); in SSL_CTX_set_ciphersuites()
1428 int ret = set_ciphersuites(&(s->tls13_ciphersuites), str); in SSL_set_ciphersuites()
/third_party/node/deps/openssl/openssl/ssl/
Dssl_ciph.c1332 static __owur int set_ciphersuites(STACK_OF(SSL_CIPHER) **currciphers, const char *str) in set_ciphersuites() function
1417 int ret = set_ciphersuites(&(ctx->tls13_ciphersuites), str); in SSL_CTX_set_ciphersuites()
1429 int ret = set_ciphersuites(&(s->tls13_ciphersuites), str); in SSL_set_ciphersuites()
/third_party/libcoap/src/
Dcoap_mbedtls.c1029 set_ciphersuites(mbedtls_ssl_config *conf, coap_enc_method_t method) { function
1177 set_ciphersuites(&m_env->conf, COAP_ENC_PSK);
1215 set_ciphersuites(&m_env->conf, COAP_ENC_PKI);
/third_party/rust/crates/rust-openssl/openssl/
DCHANGELOG.md124 …::set_min_proto_version`, `SslREf::set_max_proto_version`, `SslRef::set_ciphersuites`, `SslRef::se…
563 * Added `SslContextBuilder::set_ciphersuites`.
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/
Dmod.rs1542 ssl.set_ciphersuites("TLS_AES_128_GCM_SHA256").unwrap(); in set_ssl_certificate_key_related_api()