Share via


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 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 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

 Last updated on Thursday, April 08, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.