diff options
author | Luke Leighton <lkcl@samba.org> | 1997-11-03 15:47:03 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-11-03 15:47:03 +0000 |
commit | 4039df6d4b28064a6e72fbdbcf34cce6f961c4c4 (patch) | |
tree | 5da5b4f52901c4eea7bc6cb4b8bb5ce7838e7762 /source3/include | |
parent | 083a3be7d7170e92d6985be00c4c02c8215b80c2 (diff) | |
download | samba-4039df6d4b28064a6e72fbdbcf34cce6f961c4c4.tar.gz samba-4039df6d4b28064a6e72fbdbcf34cce6f961c4c4.tar.bz2 samba-4039df6d4b28064a6e72fbdbcf34cce6f961c4c4.zip |
added code that _uses_ arcfour. arcfour itself, or anything remotely
like it, has *not* been added.
this is the client and server side of the SAM Logon NT and LM OWF password
obfuscation (rc4 with the long-term session key).
(This used to be commit 4cf4dd696714492f8e51661cab4736d66ab2916b)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index d592c94634..4a370e0dac 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -919,7 +919,8 @@ char* smb_io_arc4_owf(BOOL io, ARC4_OWF *hash, char *q, char *base, int align, i void make_id_info1(DOM_ID_INFO_1 *id, char *domain_name, uint32 param_ctrl, uint32 log_id_low, uint32 log_id_high, char *user_name, char *wksta_name, - char arc4_lm_owf[16], char arc4_nt_owf[16]); + char *sess_key, + unsigned char lm_cypher[16], unsigned char nt_cypher[16]); char* smb_io_id_info1(BOOL io, DOM_ID_INFO_1 *id, char *q, char *base, int align, int depth); void make_sam_info(DOM_SAM_INFO *sam, char *logon_srv, char *comp_name, DOM_CRED *clnt_cred, |