Searched refs:SslVersion (Results 1 – 4 of 4) sorted by relevance
627 pub struct SslVersion(c_int); struct629 impl SslVersion { impl631 pub const SSL3: SslVersion = SslVersion(ffi::SSL3_VERSION);634 pub const TLS1: SslVersion = SslVersion(ffi::TLS1_VERSION);637 pub const TLS1_1: SslVersion = SslVersion(ffi::TLS1_1_VERSION);640 pub const TLS1_2: SslVersion = SslVersion(ffi::TLS1_2_VERSION);646 pub const TLS1_3: SslVersion = SslVersion(ffi::TLS1_3_VERSION);651 pub const DTLS1: SslVersion = SslVersion(ffi::DTLS1_VERSION);657 pub const DTLS1_2: SslVersion = SslVersion(ffi::DTLS1_2_VERSION);1140 pub fn set_min_proto_version(&mut self, version: Option<SslVersion>) -> Result<(), ErrorStack> { in set_min_proto_version()[all …]
8 use crate::ssl::SslVersion;263 ctx.set_min_proto_version(Some(SslVersion::TLS1_3))?; in mozilla_modern_v5()
26 use crate::ssl::SslVersion;1193 .set_max_proto_version(Some(SslVersion::TLS1_1)) in no_version_overlap()1196 assert_eq!(server.ctx().max_proto_version(), Some(SslVersion::TLS1_1)); in no_version_overlap()1203 .set_min_proto_version(Some(SslVersion::TLS1_2)) in no_version_overlap()1206 assert_eq!(client.ctx().min_proto_version(), Some(SslVersion::TLS1_2)); in no_version_overlap()1456 assert_eq!(ssl.client_hello_legacy_version(), Some(SslVersion::TLS1_2)); in client_hello()1539 ssl.set_min_proto_version(Some(SslVersion::TLS1_2)).unwrap(); in set_ssl_certificate_key_related_api()1540 ssl.set_max_proto_version(Some(SslVersion::TLS1_3)).unwrap(); in set_ssl_certificate_key_related_api()
688 * Added `SslVersion`.