CRYPT_ATTR_BLOB (Structures)
Last changed: anonymous

.
Summary
The CRYPT_INTEGER_BLOB structure contains an arbitrary array of bytes. The structure definition includes aliases appropriate to the various functions that use it.

C# Definition:

[StructLayout(LayoutKind.Sequential)]
public struct CRYPT_ATTR_BLOB
{
    public uint cbData;
    [MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0)]
    public byte[] pbData;
}

VB Definition:

Structure CRYPT_ATTR_BLOB
   Public TODO
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation