The BCryptBufferDesc structure is used to contain a set of generic CNG buffers.
typedef struct _BCryptBufferDesc {
ULONG ulVersion;
ULONG cBuffers;
PBCryptBuffer pBuffers;
} BCryptBufferDesc, *PBCryptBufferDesc;
ulVersion
The version of the structure. This must be the following value.
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.
Header: Declared in bcrypt.h.
Library: Use bcrypt.lib.