[][src]Struct snmp_usm::DesPrivKey

pub struct DesPrivKey<'a, D> { /* fields omitted */ }

Privacy key used for DES encryption.

It is constructed from a Localizedkey. When decrypting the padding is not removed.

Authentication must always be performed when encryption is requested.

Trait Implementations

impl<'a, D: Clone> Clone for DesPrivKey<'a, D>[src]

impl<'a, D: Debug> Debug for DesPrivKey<'a, D>[src]

impl<'a, D: Eq> Eq for DesPrivKey<'a, D>[src]

impl<'a, D: Hash> Hash for DesPrivKey<'a, D>[src]

impl<'a, D: PartialEq> PartialEq<DesPrivKey<'a, D>> for DesPrivKey<'a, D>[src]

impl<'a, D> PrivKey for DesPrivKey<'a, D>[src]

type Salt = u32

The type of the "salt" used for encryption.

impl<'a, D> StructuralEq for DesPrivKey<'a, D>[src]

impl<'a, D> StructuralPartialEq for DesPrivKey<'a, D>[src]

impl<'a, D> WithLocalizedKey<'a, D> for DesPrivKey<'a, D>[src]

Auto Trait Implementations

impl<'a, D> RefUnwindSafe for DesPrivKey<'a, D> where
    D: RefUnwindSafe

impl<'a, D> Send for DesPrivKey<'a, D> where
    D: Sync

impl<'a, D> Sync for DesPrivKey<'a, D> where
    D: Sync

impl<'a, D> Unpin for DesPrivKey<'a, D>

impl<'a, D> UnwindSafe for DesPrivKey<'a, D> where
    D: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.