Struct openssl::ssl::SslOptions [−][src]
Options controlling the behavior of an SslContext
.
Implementations
impl SslOptions
[src]
pub const DONT_INSERT_EMPTY_FRAGMENTS: SslOptions
[src]
Disables a countermeasure against an SSLv3/TLSv1.0 vulnerability affecting CBC ciphers.
pub const ALL: SslOptions
[src]
A “reasonable default” set of options which enables compatibility flags.
pub const NO_QUERY_MTU: SslOptions
[src]
Do not query the MTU.
Only affects DTLS connections.
pub const COOKIE_EXCHANGE: SslOptions
[src]
Enables Cookie Exchange as described in RFC 4347 Section 4.2.1.
Only affects DTLS connections.
pub const NO_TICKET: SslOptions
[src]
Disables the use of session tickets for session resumption.
pub const NO_SESSION_RESUMPTION_ON_RENEGOTIATION: SslOptions
[src]
Always start a new session when performing a renegotiation on the server side.
pub const NO_COMPRESSION: SslOptions
[src]
Disables the use of TLS compression.
pub const ALLOW_UNSAFE_LEGACY_RENEGOTIATION: SslOptions
[src]
Allow legacy insecure renegotiation with servers or clients that do not support secure renegotiation.
pub const SINGLE_ECDH_USE: SslOptions
[src]
Creates a new key for each session when using ECDHE.
This is always enabled in OpenSSL 1.1.0.
pub const SINGLE_DH_USE: SslOptions
[src]
Creates a new key for each session when using DHE.
This is always enabled in OpenSSL 1.1.0.
pub const CIPHER_SERVER_PREFERENCE: SslOptions
[src]
Use the server’s preferences rather than the client’s when selecting a cipher.
This has no effect on the client side.
pub const TLS_ROLLBACK_BUG: SslOptions
[src]
Disables version rollback attach detection.
pub const NO_SSLV2: SslOptions
[src]
Disables the use of SSLv2.
pub const NO_SSLV3: SslOptions
[src]
Disables the use of SSLv3.
pub const NO_TLSV1: SslOptions
[src]
Disables the use of TLSv1.0.
pub const NO_TLSV1_1: SslOptions
[src]
Disables the use of TLSv1.1.
pub const NO_TLSV1_2: SslOptions
[src]
Disables the use of TLSv1.2.
pub const NO_TLSV1_3: SslOptions
[src]
Disables the use of TLSv1.3.
Requires OpenSSL 1.1.1 or newer.
pub const NO_DTLSV1: SslOptions
[src]
Disables the use of DTLSv1.0
Requires OpenSSL 1.0.2 or newer.
pub const NO_DTLSV1_2: SslOptions
[src]
Disables the use of DTLSv1.2.
Requires OpenSSL 1.0.2, or newer.
pub const NO_SSL_MASK: SslOptions
[src]
Disables the use of all (D)TLS protocol versions.
This can be used as a mask when whitelisting protocol versions.
Requires OpenSSL 1.0.2 or newer.
Examples
Only support TLSv1.2:
use openssl::ssl::SslOptions; let options = SslOptions::NO_SSL_MASK & !SslOptions::NO_TLSV1_2;
pub const ENABLE_MIDDLEBOX_COMPAT: SslOptions
[src]
Enable TLSv1.3 Compatibility mode.
Requires OpenSSL 1.1.1 or newer. This is on by default in 1.1.1, but a future version may have this disabled by default.
pub const fn empty() -> SslOptions
[src]
Returns an empty set of flags
pub const fn all() -> SslOptions
[src]
Returns the set containing all flags.
pub const fn bits(&self) -> c_ulong
[src]
Returns the raw value of the flags currently stored.
pub fn from_bits(bits: c_ulong) -> Option<SslOptions>
[src]
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub const fn from_bits_truncate(bits: c_ulong) -> SslOptions
[src]
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: c_ulong) -> SslOptions
[src]
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn is_empty(&self) -> bool
[src]
Returns true
if no flags are currently stored.
pub const fn is_all(&self) -> bool
[src]
Returns true
if all flags are currently set.
pub const fn intersects(&self, other: SslOptions) -> bool
[src]
Returns true
if there are flags common to both self
and other
.
pub const fn contains(&self, other: SslOptions) -> bool
[src]
Returns true
all of the flags in other
are contained within self
.
pub fn insert(&mut self, other: SslOptions)
[src]
Inserts the specified flags in-place.
pub fn remove(&mut self, other: SslOptions)
[src]
Removes the specified flags in-place.
pub fn toggle(&mut self, other: SslOptions)
[src]
Toggles the specified flags in-place.
pub fn set(&mut self, other: SslOptions, value: bool)
[src]
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Binary for SslOptions
[src]
impl BitAnd<SslOptions> for SslOptions
[src]
type Output = SslOptions
The resulting type after applying the &
operator.
fn bitand(self, other: SslOptions) -> SslOptions
[src]
Returns the intersection between the two sets of flags.
impl BitAndAssign<SslOptions> for SslOptions
[src]
fn bitand_assign(&mut self, other: SslOptions)
[src]
Disables all flags disabled in the set.
impl BitOr<SslOptions> for SslOptions
[src]
type Output = SslOptions
The resulting type after applying the |
operator.
fn bitor(self, other: SslOptions) -> SslOptions
[src]
Returns the union of the two sets of flags.
impl BitOrAssign<SslOptions> for SslOptions
[src]
fn bitor_assign(&mut self, other: SslOptions)
[src]
Adds the set of flags.
impl BitXor<SslOptions> for SslOptions
[src]
type Output = SslOptions
The resulting type after applying the ^
operator.
fn bitxor(self, other: SslOptions) -> SslOptions
[src]
Returns the left flags, but with all the right flags toggled.
impl BitXorAssign<SslOptions> for SslOptions
[src]
fn bitxor_assign(&mut self, other: SslOptions)
[src]
Toggles the set of flags.
impl Clone for SslOptions
[src]
fn clone(&self) -> SslOptions
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for SslOptions
[src]
impl Debug for SslOptions
[src]
impl Eq for SslOptions
[src]
impl Extend<SslOptions> for SslOptions
[src]
fn extend<T: IntoIterator<Item = SslOptions>>(&mut self, iterator: T)
[src]
pub fn extend_one(&mut self, item: A)
[src]
pub fn extend_reserve(&mut self, additional: usize)
[src]
impl FromIterator<SslOptions> for SslOptions
[src]
fn from_iter<T: IntoIterator<Item = SslOptions>>(iterator: T) -> SslOptions
[src]
impl Hash for SslOptions
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl LowerHex for SslOptions
[src]
impl Not for SslOptions
[src]
type Output = SslOptions
The resulting type after applying the !
operator.
fn not(self) -> SslOptions
[src]
Returns the complement of this set of flags.
impl Octal for SslOptions
[src]
impl Ord for SslOptions
[src]
fn cmp(&self, other: &SslOptions) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl PartialEq<SslOptions> for SslOptions
[src]
fn eq(&self, other: &SslOptions) -> bool
[src]
fn ne(&self, other: &SslOptions) -> bool
[src]
impl PartialOrd<SslOptions> for SslOptions
[src]
fn partial_cmp(&self, other: &SslOptions) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl StructuralEq for SslOptions
[src]
impl StructuralPartialEq for SslOptions
[src]
impl Sub<SslOptions> for SslOptions
[src]
type Output = SslOptions
The resulting type after applying the -
operator.
fn sub(self, other: SslOptions) -> SslOptions
[src]
Returns the set difference of the two sets of flags.
impl SubAssign<SslOptions> for SslOptions
[src]
fn sub_assign(&mut self, other: SslOptions)
[src]
Disables all flags enabled in the set.
impl UpperHex for SslOptions
[src]
Auto Trait Implementations
impl RefUnwindSafe for SslOptions
impl Send for SslOptions
impl Sync for SslOptions
impl Unpin for SslOptions
impl UnwindSafe for SslOptions
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,