]> git.ipfire.org Git - thirdparty/squid.git/blob - include/sspwin32.h
Merge from trunk
[thirdparty/squid.git] / include / sspwin32.h
1 /*
2 * $Id: sspwin32.h,v 1.2 2006/09/09 15:29:59 serassio Exp $
3 *
4 * AUTHOR: Guido Serassio <serassio@squid-cache.org>
5 * Based on previous work of Francesco Chemolli, Robert Collins and Andrew Doran
6 *
7 * SQUID Web Proxy Cache http://www.squid-cache.org/
8 * ----------------------------------------------------------
9 *
10 * Squid is the result of efforts by numerous individuals from
11 * the Internet community; see the CONTRIBUTORS file for full
12 * details. Many organizations have provided support for Squid's
13 * development; see the SPONSORS file for full details. Squid is
14 * Copyrighted (C) 2001 by the Regents of the University of
15 * California; see the COPYRIGHT file for full details. Squid
16 * incorporates software developed and/or copyrighted by other
17 * sources; see the CREDITS file for full details.
18 *
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 2 of the License, or
22 * (at your option) any later version.
23 *
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
32 *
33 */
34 #ifndef _LIBSSPWIN32_H_
35 #define _LIBSSPWIN32_H_
36
37 #ifdef _SQUID_WIN32_
38
39 #define SECURITY_WIN32
40 #define NTLM_PACKAGE_NAME "NTLM"
41 #define NEGOTIATE_PACKAGE_NAME "Negotiate"
42
43 #ifdef _SQUID_CYGWIN_
44 #include <wchar.h>
45 #define _T(x) TEXT(x)
46 #else
47 #include <tchar.h>
48 #endif
49 #include <windows.h>
50 #include <ntsecapi.h>
51 #include <security.h>
52 #include <sspi.h>
53
54 typedef char * SSP_blobP;
55
56 #define WINNT_SECURITY_DLL "security.dll"
57 #define WIN2K_SECURITY_DLL "secur32.dll"
58
59 #define SSP_BASIC 1
60 #define SSP_NTLM 2
61
62 #define SSP_MAX_CRED_LEN 848
63
64 #define SSP_DEBUG 0
65
66 #define SSP_OK 1
67 #define SSP_ERROR 2
68
69 HMODULE LoadSecurityDll(int, char *);
70 void UnloadSecurityDll(void);
71 BOOL WINAPI SSP_LogonUser(PTSTR, PTSTR, PTSTR);
72 BOOL WINAPI SSP_ValidateNTLMCredentials(PVOID, int, char *);
73 const char * WINAPI SSP_ValidateNegotiateCredentials(PVOID, int, PBOOL, int *, char *);
74 const char * WINAPI SSP_MakeChallenge(PVOID, int);
75 const char * WINAPI SSP_MakeNegotiateBlob(PVOID, int, PBOOL, int *, char *);
76
77 extern BOOL Use_Unicode;
78 extern BOOL NTLM_LocalCall;
79
80 #endif /* _SQUID_WIN32_ */
81
82 #endif /* LIBSSPWIN32_H_ */