Skip to content

Commit

Permalink
fix: store session key when using server-side NTLM implementation (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
malcolmstill authored Jan 20, 2025
1 parent a0a384b commit 41d1ca7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ntlm/messages/server/complete_authenticate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ pub fn complete_authenticate(context: &mut Ntlm) -> crate::Result<SecurityStatus
session_key.as_ref(),
)?;

context.session_key = Some(session_key);
context.state = NtlmState::Final;

Ok(SecurityStatus::Ok)
Expand Down

0 comments on commit 41d1ca7

Please sign in to comment.