]> git.ipfire.org Git - thirdparty/squid.git/blame - include/sspwin32.h
TestBed: Typo remaining from old flags mistake
[thirdparty/squid.git] / include / sspwin32.h
CommitLineData
6e785d85 1/*
262a0e14 2 * $Id$
1b52df9a 3 *
4 * AUTHOR: Guido Serassio <serassio@squid-cache.org>
6e785d85 5 * Based on previous work of Francesco Chemolli, Robert Collins and Andrew Doran
6 *
1b52df9a 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.
c5dd4956 23 *
1b52df9a 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.
c5dd4956 28 *
1b52df9a 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.
6e785d85 32 *
6e785d85 33 */
6e785d85 34#ifndef _LIBSSPWIN32_H_
35#define _LIBSSPWIN32_H_
e1f7507e
AJ
36
37#ifdef _SQUID_WIN32_
38
6e785d85 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>
b16858f4 50#include <ntsecapi.h>
6e785d85 51#include <security.h>
52#include <sspi.h>
53
54typedef 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
69HMODULE LoadSecurityDll(int, char *);
70void UnloadSecurityDll(void);
71BOOL WINAPI SSP_LogonUser(PTSTR, PTSTR, PTSTR);
72BOOL WINAPI SSP_ValidateNTLMCredentials(PVOID, int, char *);
73const char * WINAPI SSP_ValidateNegotiateCredentials(PVOID, int, PBOOL, int *, char *);
74const char * WINAPI SSP_MakeChallenge(PVOID, int);
75const char * WINAPI SSP_MakeNegotiateBlob(PVOID, int, PBOOL, int *, char *);
76
77extern BOOL Use_Unicode;
78extern BOOL NTLM_LocalCall;
e1f7507e
AJ
79
80#endif /* _SQUID_WIN32_ */
81
6e785d85 82#endif /* LIBSSPWIN32_H_ */