diff options
author | Luke Leighton <lkcl@samba.org> | 1997-10-26 18:42:47 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-10-26 18:42:47 +0000 |
commit | 95b3b1473f84cd48ec3d0333c89e3280e1e10678 (patch) | |
tree | 32975a8c4c163b9b46dfc597afd992b949cd3a89 /source3/include | |
parent | 205876345537ce80b24cc65dd1b610c22a117767 (diff) | |
download | samba-95b3b1473f84cd48ec3d0333c89e3280e1e10678.tar.gz samba-95b3b1473f84cd48ec3d0333c89e3280e1e10678.tar.bz2 samba-95b3b1473f84cd48ec3d0333c89e3280e1e10678.zip |
hooray. hooray some more. hooray a lot. got the client-side working.
Q/R LSA_REQ_CHAL; Q/R LSA_AUTH2; Q/R LSA_SAMLOGON; Q/R LSA_SAMLOGOFF.
the last (non-essential right now) bit is the LSA_SRV_PWSET.
the next stage is to do LSA_OPENPOLICY; add the pipe binds (missing right
now); then we can test against an NT Server.
(This used to be commit 0a549e62fbf11a3ff1f1de663176e30006553e08)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 6489e87561..f0c855c689 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -102,8 +102,11 @@ void cred_create(uint32 session_key[2], DOM_CHAL *stor_cred, UTIME timestamp, DOM_CHAL *cred); int cred_assert(DOM_CHAL *cred, uint32 session_key[2], DOM_CHAL *stored_cred, UTIME timestamp); -BOOL srv_deal_with_creds(struct dcinfo *dc, DOM_CRED *clnt_cred, DOM_CRED *srv_cred); -BOOL clnt_deal_with_creds(struct dcinfo *dc, DOM_CRED *srv_cred, DOM_CRED *clnt_cred); +BOOL clnt_deal_with_creds(uint32 sess_key[2], + DOM_CRED *sto_clnt_cred, DOM_CRED *rcv_srv_cred); +BOOL deal_with_creds(uint32 sess_key[2], + DOM_CRED *sto_clnt_cred, + DOM_CRED *rcv_clnt_cred, DOM_CRED *rtn_srv_cred); /*The following definitions come from dir.c */ @@ -891,7 +894,7 @@ void cred_hash2(unsigned char *out,unsigned char *in,unsigned char *key); void SMBencrypt(uchar *passwd, uchar *c8, uchar *p24); void E_md4hash(uchar *passwd, uchar *p16); void SMBNTencrypt(uchar *passwd, uchar *c8, uchar *p24); -void nt_lm_owf_gen(char *pwd, char nt_p16[16], char p16[16]); +void nt_lm_owf_gen(char *pwd, char *nt_p16, char *p16); /*The following definitions come from smbparse.c */ |