[][src]Struct kerberos_parser::krb5::EncryptedData

pub struct EncryptedData<'a> {
    pub etype: EncryptionType,
    pub kvno: Option<u32>,
    pub cipher: &'a [u8],
}

Kerberos EncryptedData

Fields

etype: EncryptionType

EncryptionType

kvno: Option<u32>

Version number of the key under which data is encrypted

cipher: &'a [u8]

Ciphertext

Trait Implementations

impl<'a> Debug for EncryptedData<'a>[src]

impl<'a> PartialEq<EncryptedData<'a>> for EncryptedData<'a>[src]

impl<'a> StructuralPartialEq for EncryptedData<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for EncryptedData<'a>

impl<'a> Send for EncryptedData<'a>

impl<'a> Sync for EncryptedData<'a>

impl<'a> Unpin for EncryptedData<'a>

impl<'a> UnwindSafe for EncryptedData<'a>

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, 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.