pub struct Type3 {
pub user: String,
pub domain: String,
pub workstation: String,
pub lm_response: Vec<u8>,
pub ntlm_response: Vec<u8>,
pub encrypted_session_key: Vec<u8>,
pub flags: u32,
}Expand description
Parsed AUTHENTICATE (type 3) message.
Fields§
§user: StringAccount name supplied by the client.
domain: StringAuthentication target domain.
workstation: StringClient workstation name.
lm_response: Vec<u8>LM response bytes (may be empty for NTLMv2-only clients).
ntlm_response: Vec<u8>NTLM/NTLMv2 response bytes (proof + blob for v2).
encrypted_session_key: Vec<u8>Encrypted random session key (present with NEGOTIATE_KEY_EXCH).
flags: u32Flags echoed by the client in the type 3 message.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Type3
impl RefUnwindSafe for Type3
impl Send for Type3
impl Sync for Type3
impl Unpin for Type3
impl UnsafeUnpin for Type3
impl UnwindSafe for Type3
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