pub struct SslCipher(/* private fields */);
Expand description
Information about a cipher.
Methods from Deref<Target = 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.
Requires OpenSSL 1.1.1 or newer.
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 handshake_digest(&self) -> Option<MessageDigest>
pub fn handshake_digest(&self) -> Option<MessageDigest>
Returns the handshake digest of the cipher.
Requires OpenSSL 1.1.1 or newer.
This corresponds to SSL_CIPHER_get_handshake_digest
.
Sourcepub fn cipher_nid(&self) -> Option<Nid>
pub fn cipher_nid(&self) -> Option<Nid>
Returns the NID corresponding to the cipher.
Requires OpenSSL 1.1.0 or LibreSSL 2.7.0 or newer.
This corresponds to SSL_CIPHER_get_cipher_nid
.
Trait Implementations§
Source§impl Deref for SslCipher
impl Deref for SslCipher
Source§type Target = SslCipherRef
type Target = SslCipherRef
Source§fn deref(&self) -> &SslCipherRef
fn deref(&self) -> &SslCipherRef
Source§impl DerefMut for SslCipher
impl DerefMut for SslCipher
Source§fn deref_mut(&mut self) -> &mut SslCipherRef
fn deref_mut(&mut self) -> &mut SslCipherRef
Source§impl ForeignType for SslCipher
impl ForeignType for SslCipher
Source§type CType = SSL_CIPHER
type CType = SSL_CIPHER
Source§type Ref = SslCipherRef
type Ref = SslCipherRef
Source§unsafe fn from_ptr(ptr: *mut SSL_CIPHER) -> SslCipher
unsafe fn from_ptr(ptr: *mut SSL_CIPHER) -> SslCipher
Source§fn as_ptr(&self) -> *mut SSL_CIPHER
fn as_ptr(&self) -> *mut SSL_CIPHER
Auto Trait Implementations§
impl Freeze for SslCipher
impl RefUnwindSafe for SslCipher
impl !Send for SslCipher
impl !Sync for SslCipher
impl Unpin for SslCipher
impl UnwindSafe for SslCipher
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
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 8 bytes