CRYPT_BIT_BLOB (Windows CE 5.0)

Send Feedback

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 equal to cbData * 8 – cUnusedBits.

typedef struct _CRYPT_BIT_BLOB {DWORDcbData;BYTE* pbData;DWORDcUnusedBits;} CRYPT_BIT_BLOB, *PCRYPT_BIT_BLOB;

Members

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

Requirements

OS Versions: Windows CE 3.0 and later.
Header: Wincrypt.h.

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

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.