From fdc6db34caf4c30fd5bf439fcd3a5453fd26a590 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 25 May 2010 21:18:15 +1000 Subject: s4:ntlmssp Use common code for ntlmssp_sign.c The common code does not have a mem_ctx on ntlmssp_check_packet() and ntlmssp_unseal_packet(). We do however need some internal working of the code exposed, so some structures are moved to ntlmssp_sign.h Andrew Bartlett --- libcli/auth/ntlmssp_private.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'libcli/auth/ntlmssp_private.h') diff --git a/libcli/auth/ntlmssp_private.h b/libcli/auth/ntlmssp_private.h index 0f0c7dbba9..e2044eea20 100644 --- a/libcli/auth/ntlmssp_private.h +++ b/libcli/auth/ntlmssp_private.h @@ -20,6 +20,25 @@ /* For structures internal to the NTLMSSP implementation that should not be exposed */ +#include "../lib/crypto/arcfour.h" + +struct ntlmssp_crypt_direction { + uint32_t seq_num; + uint8_t sign_key[16]; + struct arcfour_state seal_state; +}; + +union ntlmssp_crypt_state { + /* NTLM */ + struct ntlmssp_crypt_direction ntlm; + + /* NTLM2 */ + struct { + struct ntlmssp_crypt_direction sending; + struct ntlmssp_crypt_direction receiving; + } ntlm2; +}; + /* The following definitions come from libcli/auth/ntlmssp.c */ void debug_ntlmssp_flags(uint32_t neg_flags); -- cgit