pub struct SslCipherRef(/* private fields */);tls only.Expand description
Reference to an SslCipher.
Implementations§
Source§impl SslCipherRef
impl SslCipherRef
Sourcepub fn name(&self) -> &'static str
pub fn name(&self) -> &'static str
Returns the name of the cipher.
This corresponds to SSL_CIPHER_get_name.
Sourcepub fn standard_name(&self) -> Option<&'static str>
pub fn standard_name(&self) -> Option<&'static str>
Returns the RFC-standard name of the cipher, if one exists.
This corresponds to SSL_CIPHER_standard_name.
Sourcepub fn version(&self) -> &'static str
pub fn version(&self) -> &'static str
Returns the SSL/TLS protocol version that first defined the cipher.
This corresponds to SSL_CIPHER_get_version.
Sourcepub fn bits(&self) -> CipherBits
pub fn bits(&self) -> CipherBits
Returns the number of bits used for the cipher.
This corresponds to SSL_CIPHER_get_bits.
Sourcepub fn description(&self) -> String
pub fn description(&self) -> String
Returns a textual description of the cipher.
This corresponds to SSL_CIPHER_description.
Sourcepub fn cipher_is_aead(&self) -> bool
pub fn cipher_is_aead(&self) -> bool
Returns one if the cipher uses an AEAD cipher.
This corresponds to SSL_CIPHER_is_aead.
Sourcepub fn cipher_auth_nid(&self) -> Option<Nid>
pub fn cipher_auth_nid(&self) -> Option<Nid>
Returns the NID corresponding to the cipher’s authentication type.
This corresponds to SSL_CIPHER_get_auth_nid.
Sourcepub fn cipher_nid(&self) -> Option<Nid>
pub fn cipher_nid(&self) -> Option<Nid>
Returns the NID corresponding to the cipher.
This corresponds to SSL_CIPHER_get_cipher_nid.
Trait Implementations§
Source§impl ForeignTypeRef for SslCipherRef
impl ForeignTypeRef for SslCipherRef
Source§type CType = ssl_cipher_st
type CType = ssl_cipher_st
Source§unsafe fn from_ptr<'a>(ptr: *mut Self::CType) -> &'a Self
unsafe fn from_ptr<'a>(ptr: *mut Self::CType) -> &'a Self
Auto Trait Implementations§
impl Freeze for SslCipherRef
impl !RefUnwindSafe for SslCipherRef
impl !Send for SslCipherRef
impl !Sync for SslCipherRef
impl Unpin for SslCipherRef
impl UnwindSafe for SslCipherRef
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more