pub struct Aes256CryptFilter;
Trait Implementations§
Source§impl Clone for Aes256CryptFilter
impl Clone for Aes256CryptFilter
Source§fn clone(&self) -> Aes256CryptFilter
fn clone(&self) -> Aes256CryptFilter
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl CryptFilter for Aes256CryptFilter
impl CryptFilter for Aes256CryptFilter
fn method(&self) -> &[u8] ⓘ
fn compute_key( &self, key: &[u8], _obj_id: (u32, u16), ) -> Result<Vec<u8>, DecryptionError>
fn encrypt( &self, key: &[u8], plaintext: &[u8], ) -> Result<Vec<u8>, DecryptionError>
fn decrypt( &self, key: &[u8], ciphertext: &[u8], ) -> Result<Vec<u8>, DecryptionError>
Source§impl Debug for Aes256CryptFilter
impl Debug for Aes256CryptFilter
impl Copy for Aes256CryptFilter
Auto Trait Implementations§
impl Freeze for Aes256CryptFilter
impl RefUnwindSafe for Aes256CryptFilter
impl Send for Aes256CryptFilter
impl Sync for Aes256CryptFilter
impl Unpin for Aes256CryptFilter
impl UnwindSafe for Aes256CryptFilter
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