[][src]Struct kerberos_asn1::AsRep

pub struct AsRep {
    pub pvno: Int32,
    pub msg_type: Int32,
    pub padata: Option<SequenceOf<PaData>>,
    pub crealm: Realm,
    pub cname: PrincipalName,
    pub ticket: Ticket,
    pub enc_part: EncryptedData,
}

(AS-REP) Message returned by KDC in response to AS-REQ.

AS-REP          ::= [APPLICATION 11] KDC-REP

KDC-REP         ::= SEQUENCE {
       pvno            [0] INTEGER (5),
       msg-type        [1] INTEGER (11 -- AS -- | 13 -- TGS --),
       padata          [2] SEQUENCE OF PA-DATA OPTIONAL
                               -- NOTE: not empty --,
       crealm          [3] Realm,
       cname           [4] PrincipalName,
       ticket          [5] Ticket,
       enc-part        [6] EncryptedData
                               -- EncASRepPart or EncTGSRepPart,
                               -- as appropriate
}

Fields

pvno: Int32msg_type: Int32padata: Option<SequenceOf<PaData>>crealm: Realmcname: PrincipalNameticket: Ticketenc_part: EncryptedData

Implementations

impl AsRep[src]

pub fn new(
    padata: Option<SequenceOf<PaData>>,
    crealm: Realm,
    cname: PrincipalName,
    ticket: Ticket,
    enc_part: EncryptedData
) -> Self
[src]

Trait Implementations

impl Asn1Object for AsRep[src]

impl Clone for AsRep[src]

impl Debug for AsRep[src]

impl Default for AsRep[src]

impl PartialEq<AsRep> for AsRep[src]

impl StructuralPartialEq for AsRep[src]

Auto Trait Implementations

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