BCryptBufferDesc structure
The BCryptBufferDesc structure is used to contain a set of generic CNG buffers.
Syntax
typedef struct _BCryptBufferDesc { ULONG ulVersion; ULONG cBuffers; PBCryptBuffer pBuffers; } BCryptBufferDesc, *PBCryptBufferDesc;
Members
- ulVersion
-
The version of the structure. This must be the following value.
Value Meaning - BCRYPTBUFFER_VERSION
The default version number.
- cBuffers
-
The number of elements in the pBuffers array.
- pBuffers
-
The address of an array of BCryptBuffer structures that contain the buffers. The cBuffers member contains the number of elements in this array.
Requirements
|
Minimum supported client |
Windows Vista [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2008 [desktop apps only] |
|
Header |
|
See also