CRYPT_DATA_BLOB (crypt32)
Last changed: anonymous

.
Summary
Used in the call to PFXImportCertStore API to load in it the binary content of the file and its length.

C# Signature:

    [StructLayout(LayoutKind.Sequential)]
    internal struct CRYPT_DATA_BLOB
    {
        public int cbData;
        public IntPtr pbData;
    }

VB Signature:

Declare Function CRYPT_DATA_BLOB Lib "crypt32.dll" (TODO) As TODO

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation