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.

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

Header: Declared in bcrypt.h.

Library: Use bcrypt.lib.