80 lines
2.5 KiB
C
80 lines
2.5 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
* Security Support Provider Interface (SSPI)
|
|
*
|
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef FREERDP_AUTH_SSPI_PRIVATE_H
|
|
#define FREERDP_AUTH_SSPI_PRIVATE_H
|
|
|
|
#include <freerdp/types.h>
|
|
#include <freerdp/auth/sspi.h>
|
|
|
|
struct _CREDENTIALS
|
|
{
|
|
SEC_AUTH_IDENTITY identity;
|
|
};
|
|
typedef struct _CREDENTIALS CREDENTIALS;
|
|
|
|
CREDENTIALS* sspi_CredentialsNew();
|
|
void sspi_CredentialsFree(CREDENTIALS* credentials);
|
|
|
|
void sspi_SecBufferAlloc(SEC_BUFFER* sec_buffer, size_t size);
|
|
void sspi_SecBufferFree(SEC_BUFFER* sec_buffer);
|
|
|
|
SEC_HANDLE* sspi_SecureHandleAlloc();
|
|
void sspi_SecureHandleInit(SEC_HANDLE* handle);
|
|
void sspi_SecureHandleInvalidate(SEC_HANDLE* handle);
|
|
void* sspi_SecureHandleGetLowerPointer(SEC_HANDLE* handle);
|
|
void sspi_SecureHandleSetLowerPointer(SEC_HANDLE* handle, void* pointer);
|
|
void* sspi_SecureHandleGetUpperPointer(SEC_HANDLE* handle);
|
|
void sspi_SecureHandleSetUpperPointer(SEC_HANDLE* handle, void* pointer);
|
|
void sspi_SecureHandleFree(SEC_HANDLE* handle);
|
|
|
|
enum SecurityFunctionTableIndex
|
|
{
|
|
EnumerateSecurityPackagesIndex = 1,
|
|
Reserved1Index = 2,
|
|
QueryCredentialsAttributesIndex = 3,
|
|
AcquireCredentialsHandleIndex = 4,
|
|
FreeCredentialsHandleIndex = 5,
|
|
Reserved2Index = 6,
|
|
InitializeSecurityContextIndex = 7,
|
|
AcceptSecurityContextIndex = 8,
|
|
CompleteAuthTokenIndex = 9,
|
|
DeleteSecurityContextIndex = 10,
|
|
ApplyControlTokenIndex = 11,
|
|
QueryContextAttributesIndex = 12,
|
|
ImpersonateSecurityContextIndex = 13,
|
|
RevertSecurityContextIndex = 14,
|
|
MakeSignatureIndex = 15,
|
|
VerifySignatureIndex = 16,
|
|
FreeContextBufferIndex = 17,
|
|
QuerySecurityPackageInfoIndex = 18,
|
|
Reserved3Index = 19,
|
|
Reserved4Index = 20,
|
|
ExportSecurityContextIndex = 21,
|
|
ImportSecurityContextIndex = 22,
|
|
AddCredentialsIndex = 23,
|
|
Reserved8Index = 24,
|
|
QuerySecurityContextTokenIndex = 25,
|
|
EncryptMessageIndex = 26,
|
|
DecryptMessageIndex = 27,
|
|
SetContextAttributesIndex = 28
|
|
};
|
|
|
|
#endif /* FREERDP_AUTH_SSPI_PRIVATE_H */
|