File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 42
42
//! # SSL/TLS
43
43
//!
44
44
//! This crate supports TLS secured connections. The `TlsMode` enum is passed to connection methods
45
- //! and indicates if the connection will not, may not , or must be secured by TLS. The TLS
46
- //! implementation is pluggable through the `TlsHandshake` trait. Implementations for OpenSSL and
47
- //! OSX's Secure Transport are provided behind the `with-openssl` and `with-security-framework`
48
- //! feature flags respectively.
45
+ //! and indicates if the connection will not, may, or must be secured by TLS. The TLS implementation
46
+ //! is pluggable through the `TlsHandshake` trait. Implementations for OpenSSL and OSX's Secure
47
+ //! Transport are provided behind the `with-openssl` and `with-security-framework` feature flags
48
+ //! respectively.
49
49
//!
50
50
//! ## Examples
51
51
//!
You can’t perform that action at this time.
0 commit comments