Searched refs:SslOptions (Results 1 - 3 of 3) sorted by relevance
/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
H A D | connector.rs | 11 SslOptions, SslRef, SslStream, SslVerifyMode, 33 let mut opts = SslOptions::ALL in ctx() 34 | SslOptions::NO_COMPRESSION in ctx() 35 | SslOptions::NO_SSLV2 in ctx() 36 | SslOptions::NO_SSLV3 in ctx() 37 | SslOptions::SINGLE_DH_USE in ctx() 38 | SslOptions::SINGLE_ECDH_USE; in ctx() 39 opts &= !SslOptions::DONT_INSERT_EMPTY_FRAGMENTS; in ctx() 236 ctx.set_options(SslOptions::NO_TLSV1 | SslOptions in mozilla_intermediate_v5() [all...] |
H A D | mod.rs | 146 pub struct SslOptions: SslOptionsRepr { structure names 246 /// use openssl::ssl::SslOptions; 248 /// let options = SslOptions::NO_SSL_MASK & !SslOptions::NO_TLSV1_2; 273 /// Requires enable [`SslOptions::CIPHER_SERVER_PREFERENCE`]. 276 /// [`SslOptions::CIPHER_SERVER_PREFERENCE`]: struct.SslOptions.html#associatedconstant.CIPHER_SERVER_PREFERENCE 1111 pub fn set_options(&mut self, option: SslOptions) -> SslOptions { in set_options() 1114 SslOptions { bit in set_options() [all...] |
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/ |
H A D | mod.rs | 33 SslOptions, SslSessionCacheMode, SslStream, SslVerifyMode, StatusType, 262 let opts = ctx.set_options(SslOptions::NO_TICKET); in set_ctx_options() 263 assert!(opts.contains(SslOptions::NO_TICKET)); in set_ctx_options() 270 ctx.set_options(SslOptions::ALL); in clear_ctx_options() 271 let opts = ctx.clear_options(SslOptions::ALL); in clear_ctx_options() 272 assert!(!opts.contains(SslOptions::ALL)); in clear_ctx_options() 936 client.ctx().set_options(super::SslOptions::NO_TLSV1_3); in tmp_dh_callback() 986 client.ctx().set_options(super::SslOptions::NO_TLSV1_3); in tmp_dh_callback_ssl() 1260 use super::SslOptions; in stateless() 1342 client_ctx.clear_options(SslOptions [all...] |
Completed in 6 milliseconds