pub struct AES_DIGEST { /* private fields */ }Methods from Deref<Target = Cipher>§
Sourcepub fn nid(&self) -> Nid
pub fn nid(&self) -> Nid
Returns the cipher’s Nid.
This corresponds to EVP_CIPHER_nid.
pub fn as_ptr(&self) -> *const EVP_CIPHER
Sourcepub fn iv_len(&self) -> Option<usize>
pub fn iv_len(&self) -> Option<usize>
Returns the length of the IV used with this cipher, or None if the
cipher does not use an IV.
Sourcepub fn block_size(&self) -> usize
pub fn block_size(&self) -> usize
Trait Implementations§
Source§impl Deref for AES_DIGEST
impl Deref for AES_DIGEST
impl LazyStatic for AES_DIGEST
Auto Trait Implementations§
impl Freeze for AES_DIGEST
impl RefUnwindSafe for AES_DIGEST
impl Send for AES_DIGEST
impl Sync for AES_DIGEST
impl Unpin for AES_DIGEST
impl UnwindSafe for AES_DIGEST
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
Mutably borrows from an owned value. Read more