pub enum AlgorithmIdentifier {
Sha1,
PbewithSHAAnd40BitRC2CBC(Pkcs12PbeParams),
PbeWithSHAAnd3KeyTripleDESCBC(Pkcs12PbeParams),
OtherAlg(OtherAlgorithmIdentifier),
}Variants§
Sha1
PbewithSHAAnd40BitRC2CBC(Pkcs12PbeParams)
PbeWithSHAAnd3KeyTripleDESCBC(Pkcs12PbeParams)
OtherAlg(OtherAlgorithmIdentifier)
Implementations§
Trait Implementations§
Source§impl Clone for AlgorithmIdentifier
impl Clone for AlgorithmIdentifier
Source§fn clone(&self) -> AlgorithmIdentifier
fn clone(&self) -> AlgorithmIdentifier
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 AlgorithmIdentifier
impl Debug for AlgorithmIdentifier
Source§impl PartialEq for AlgorithmIdentifier
impl PartialEq for AlgorithmIdentifier
impl StructuralPartialEq for AlgorithmIdentifier
Auto Trait Implementations§
impl Freeze for AlgorithmIdentifier
impl RefUnwindSafe for AlgorithmIdentifier
impl Send for AlgorithmIdentifier
impl Sync for AlgorithmIdentifier
impl Unpin for AlgorithmIdentifier
impl UnwindSafe for AlgorithmIdentifier
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