CRYPT_BIT_BLOB

This structure contains an array of bytes. In a CRYPT_BIT_BLOB structure, the last byte in the array can contain zero to seven unused bits. Therefore, the number of meaningful bits in the pbData member is cbData * 8 – cUnusedBits.

typedef struct _CRYPT_BIT_BLOB {
DWORD cbData;
BYTE* pbData;
DWORD cUnusedBits;
} CRYPT_BIT_BLOB,  *PCRYPT_BIT_BLOB;

Members

  • cbData
    Number of bytes in the pbData array of bytes.
  • pbData
    Pointer to a block of data bytes.
  • cUnusedBits
    Number of unused bits in the last byte of the array.

Requirements

Runs on Versions Defined in Include Link to
Windows CE OS 3.0 or later Wincrypt.h    

Note   This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.

See Also

CERT_BASIC_CONSTRAINTS_INFO, CERT_INFO, CERT_KEY_ATTRIBUTES_INFO, CERT_KEY_USAGE_RESTRICTION_INFO, CERT_PUBLIC_KEY_INFO, CERT_SIGNED_CONTENT_INFO

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.