summaryrefslogtreecommitdiff
path: root/source4/auth/auth_util.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-09-22 10:34:49 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:58:59 -0500
commitf9d4bd18681939218d4f6d324e2bce6635cda42f (patch)
tree7367f25fd4ec721397cb7e58808c11199028e7dc /source4/auth/auth_util.c
parent6dcdf1df5637406cb47327104b3f310682487355 (diff)
downloadsamba-f9d4bd18681939218d4f6d324e2bce6635cda42f.tar.gz
samba-f9d4bd18681939218d4f6d324e2bce6635cda42f.tar.bz2
samba-f9d4bd18681939218d4f6d324e2bce6635cda42f.zip
r2505: Remove unused function. If/when we implement plaintext authenticaton
in Samba4, I want to redo this. Andrew Bartlett (This used to be commit 139cc702ac7ce0c6e3bfdfe37199299cc1bc53c2)
Diffstat (limited to 'source4/auth/auth_util.c')
-rw-r--r--source4/auth/auth_util.c56
1 files changed, 0 insertions, 56 deletions
diff --git a/source4/auth/auth_util.c b/source4/auth/auth_util.c
index 123f21406d..cc8693c5fc 100644
--- a/source4/auth/auth_util.c
+++ b/source4/auth/auth_util.c
@@ -232,62 +232,6 @@ NTSTATUS make_user_info_netlogon_interactive(struct auth_usersupplied_info **use
data_blob_free(&nt_interactive_blob);
return nt_status;
}
-
-
-/****************************************************************************
- Create an auth_usersupplied_data structure
-****************************************************************************/
-
-BOOL make_user_info_for_reply(struct auth_usersupplied_info **user_info,
- const char *smb_name,
- const char *client_domain,
- const uint8_t chal[8],
- DATA_BLOB plaintext_password)
-{
-
- DATA_BLOB local_lm_blob;
- DATA_BLOB local_nt_blob;
- NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
-
- /*
- * Not encrypted - do so.
- */
-
- DEBUG(5,("make_user_info_for_reply: User passwords not in encrypted format.\n"));
-
- if (plaintext_password.data) {
- uint8_t local_lm_response[24];
-
-#ifdef DEBUG_PASSWORD
- DEBUG(10,("Unencrypted password (len %d):\n",plaintext_password.length));
- dump_data(100, plaintext_password.data, plaintext_password.length);
-#endif
-
- SMBencrypt( (const char *)plaintext_password.data, (const uint8_t *)chal, local_lm_response);
- local_lm_blob = data_blob(local_lm_response, 24);
-
- /* We can't do an NT hash here, as the password needs to be
- case insensitive */
- local_nt_blob = data_blob(NULL, 0);
-
- } else {
- local_lm_blob = data_blob(NULL, 0);
- local_nt_blob = data_blob(NULL, 0);
- }
-
- ret = make_user_info_map(user_info, smb_name,
- client_domain,
- sub_get_remote_machine(),
- local_lm_blob.data ? &local_lm_blob : NULL,
- local_nt_blob.data ? &local_nt_blob : NULL,
- NULL, NULL,
- plaintext_password.data ? &plaintext_password : NULL,
- False);
-
- data_blob_free(&local_lm_blob);
- return NT_STATUS_IS_OK(ret) ? True : False;
-}
-
/****************************************************************************
Create an auth_usersupplied_data structure
****************************************************************************/