diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-02-08 11:49:36 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2004-02-08 11:49:36 +0000 |
commit | e81074ea20a2f65683d2ef719aaaf8a5c765e8cb (patch) | |
tree | 68c6f0dd54b466a29e4209f0a7351e54d8e6a620 /source3/libsmb/pwd_cache.c | |
parent | b38ba022481b05db4762a41dfddace66521fd491 (diff) | |
download | samba-e81074ea20a2f65683d2ef719aaaf8a5c765e8cb.tar.gz samba-e81074ea20a2f65683d2ef719aaaf8a5c765e8cb.tar.bz2 samba-e81074ea20a2f65683d2ef719aaaf8a5c765e8cb.zip |
(merge from 3.0)
Remove more unused functions - this time parts of the 'password cache'.
Andrew Bartlett
(This used to be commit c29c28e4cfc0539eb5e02196dd6cdda7bd433f61)
Diffstat (limited to 'source3/libsmb/pwd_cache.c')
-rw-r--r-- | source3/libsmb/pwd_cache.c | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/source3/libsmb/pwd_cache.c b/source3/libsmb/pwd_cache.c index 7ba6cfc96f..27ca4ddf57 100644 --- a/source3/libsmb/pwd_cache.c +++ b/source3/libsmb/pwd_cache.c @@ -81,51 +81,6 @@ void pwd_get_cleartext(struct pwd_info *pwd, fstring clr) } /**************************************************************************** - Gets lm and nt hashed passwords. -****************************************************************************/ - -void pwd_get_lm_nt_16(struct pwd_info *pwd, uchar lm_pwd[16], uchar nt_pwd[16]) -{ - if (lm_pwd != NULL) - memcpy(lm_pwd, pwd->smb_lm_pwd, 16); - if (nt_pwd != NULL) - memcpy(nt_pwd, pwd->smb_nt_pwd, 16); -} - -/**************************************************************************** - Makes lm and nt OWF crypts. -****************************************************************************/ - -void pwd_make_lm_nt_owf(struct pwd_info *pwd, uchar cryptkey[8]) -{ - -#ifdef DEBUG_PASSWORD - DEBUG(100,("client cryptkey: ")); - dump_data(100, (char *)cryptkey, 8); -#endif - - SMBOWFencrypt(pwd->smb_nt_pwd, cryptkey, pwd->smb_nt_owf); - -#ifdef DEBUG_PASSWORD - DEBUG(100,("nt_owf_passwd: ")); - dump_data(100, (char *)pwd->smb_nt_owf, sizeof(pwd->smb_nt_owf)); - DEBUG(100,("nt_sess_pwd: ")); - dump_data(100, (char *)pwd->smb_nt_pwd, sizeof(pwd->smb_nt_pwd)); -#endif - - SMBOWFencrypt(pwd->smb_lm_pwd, cryptkey, pwd->smb_lm_owf); - -#ifdef DEBUG_PASSWORD - DEBUG(100,("lm_owf_passwd: ")); - dump_data(100, (char *)pwd->smb_lm_owf, sizeof(pwd->smb_lm_owf)); - DEBUG(100,("lm_sess_pwd: ")); - dump_data(100, (char *)pwd->smb_lm_pwd, sizeof(pwd->smb_lm_pwd)); -#endif - - pwd->crypted = True; -} - -/**************************************************************************** Gets lm and nt crypts. ****************************************************************************/ |