pub enum SymmetricCipher {
DesCbc,
Rc2Cbc,
}Expand description
Symmetric encryption ciphers supported by PBES1.
Variants§
Trait Implementations§
Source§impl Clone for SymmetricCipher
impl Clone for SymmetricCipher
Source§fn clone(&self) -> SymmetricCipher
fn clone(&self) -> SymmetricCipher
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 Debug for SymmetricCipher
impl Debug for SymmetricCipher
Source§impl PartialEq for SymmetricCipher
impl PartialEq for SymmetricCipher
impl Copy for SymmetricCipher
impl Eq for SymmetricCipher
impl StructuralPartialEq for SymmetricCipher
Auto Trait Implementations§
impl Freeze for SymmetricCipher
impl RefUnwindSafe for SymmetricCipher
impl Send for SymmetricCipher
impl Sync for SymmetricCipher
impl Unpin for SymmetricCipher
impl UnsafeUnpin for SymmetricCipher
impl UnwindSafe for SymmetricCipher
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