pub struct Rc4CryptFilter;
Trait Implementations§
Source§impl Clone for Rc4CryptFilter
impl Clone for Rc4CryptFilter
Source§fn clone(&self) -> Rc4CryptFilter
fn clone(&self) -> Rc4CryptFilter
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 Rc4CryptFilter
impl CryptFilter for Rc4CryptFilter
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 Rc4CryptFilter
impl Debug for Rc4CryptFilter
impl Copy for Rc4CryptFilter
Auto Trait Implementations§
impl Freeze for Rc4CryptFilter
impl RefUnwindSafe for Rc4CryptFilter
impl Send for Rc4CryptFilter
impl Sync for Rc4CryptFilter
impl Unpin for Rc4CryptFilter
impl UnwindSafe for Rc4CryptFilter
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