1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*++
Copyright (c) 1987-1994 Microsoft Corporation
Module Name:
spseal.h
Abstract:
This is a private header file defining function prototypes for security
provider encryption routines.
Author:
Mike Swift (MikeSw) 18-Jul-1994
Environment:
User mode only.
Contains NT-specific code.
Requires ANSI C extensions: slash-slash comments, long external names.
Requires security.h or sspi.h be included.
Revision History:
--*/
#ifndef _SPSEAL_
#define _SPSEAL_
#ifdef SECURITY_DOS
#pragma warning(disable:4147)
#endif
SECURITY_STATUS SEC_ENTRY
SealMessage( PCtxtHandle phContext,
unsigned long fQOP,
PSecBufferDesc pMessage,
unsigned long MessageSeqNo);
typedef SECURITY_STATUS
(SEC_ENTRY * SEAL_MESSAGE_FN)(
PCtxtHandle, unsigned long, PSecBufferDesc, unsigned long);
SECURITY_STATUS SEC_ENTRY
UnsealMessage( PCtxtHandle phContext,
PSecBufferDesc pMessage,
unsigned long MessageSeqNo,
unsigned long * pfQOP);
typedef SECURITY_STATUS
(SEC_ENTRY * UNSEAL_MESSAGE_FN)(
PCtxtHandle, PSecBufferDesc, unsigned long,
unsigned long SEC_FAR *);
#ifdef SECURITY_DOS
#pragma warning(default:4147)
#endif
#endif // _SPSEAL_
|