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