From 80236f0d60ce013134c1ed5422d148e541f70a4f Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Wed, 28 Feb 2007 14:35:26 +0000 Subject: r21585: Start syncing the monster that will become 3.0.25pre1 Still todo: * release notes * few minor outstanding patches * additional idmap man pages --- source/include/ntlmssp.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'source/include/ntlmssp.h') diff --git a/source/include/ntlmssp.h b/source/include/ntlmssp.h index a2dac7dc0ba..d15ce18021c 100644 --- a/source/include/ntlmssp.h +++ b/source/include/ntlmssp.h @@ -65,6 +65,10 @@ enum NTLM_MESSAGE_TYPE #define NTLMSSP_NEGOTIATE_KEY_EXCH 0x40000000 #define NTLMSSP_NEGOTIATE_56 0x80000000 +#define NTLMSSP_FEATURE_SESSION_KEY 0x00000001 +#define NTLMSSP_FEATURE_SIGN 0x00000002 +#define NTLMSSP_FEATURE_SEAL 0x00000004 + #define NTLMSSP_NAME_TYPE_SERVER 0x01 #define NTLMSSP_NAME_TYPE_DOMAIN 0x02 #define NTLMSSP_NAME_TYPE_SERVER_DNS 0x03 @@ -85,7 +89,8 @@ typedef struct ntlmssp_state char *user; char *domain; char *workstation; - char *password; + unsigned char *nt_hash; + unsigned char *lm_hash; char *server_domain; DATA_BLOB internal_chal; /* Random challenge as supplied to the client for NTLM authentication */ -- cgit