struct samr_Password *nt_hash;
struct samr_Password *old_nt_hash;
- /* Allows NTLM pass-though authentication */
+ /* Allows NTLM pass-through authentication */
DATA_BLOB lm_response;
DATA_BLOB lm_session_key;
DATA_BLOB nt_response;
}
/* We may already have an NTLM response we prepared earlier.
- * This is used for NTLM pass-though authentication */
+ * This is used for NTLM pass-through authentication */
if (cred->nt_response.data || cred->lm_response.data) {
if (cred->nt_response.length != 0) {
nt_response = data_blob_dup_talloc(frame,
}
/* This is for 'LMv2' authentication. almost NTLMv2 but limited to 24 bytes.
- - related to Win9X, legacy NAS pass-though authentication
+ - related to Win9X, legacy NAS pass-through authentication
*/
DEBUG(4,("ntlm_password_check: Checking LMv2 password with domain %s\n",
client_domain ? client_domain : "<NULL>"));
}
/* Apparently NT accepts NT responses in the LM field
- - I think this is related to Win9X pass-though authentication
+ - I think this is related to Win9X pass-through authentication
*/
DEBUG(4,("ntlm_password_check: Checking NT MD4 password in LM field\n"));
if (ntlm_auth == NTLM_AUTH_ON) {