SIGNER_BLOB_INFO structure

[The SIGNER_BLOB_INFO structure is available for use in the operating systems specified in the Requirements section. It may be altered or unavailable in subsequent versions.]

The SIGNER_BLOB_INFO structure specifies a BLOB to sign.

Note

This structure is not defined in any header file. To use this structure, you must define it yourself as shown in this topic.

 

Syntax

typedef struct _SIGNER_BLOB_INFO {
  DWORD   cbSize;
  GUID    *pGuidSubject;
  DWORD   cbBlob;
  BYTE    *pbBlob;
  LPCWSTR pwszDisplayName;
} SIGNER_BLOB_INFO, *PSIGNER_BLOB_INFO;

Members

cbSize

The size, in bytes, of the structure.

pGuidSubject

A pointer to a GUID that specifies the Subject Interface Package (SIP) to load.

cbBlob

The size, in bytes, of the BLOB to sign.

pbBlob

A pointer to the BLOB to sign.

pwszDisplayName

The display name of the BLOB. This member can be set to NULL.

Requirements

Requirement Value
Minimum supported client
Windows XP [desktop apps only]
Minimum supported server
Windows Server 2003 [desktop apps only]

See also

SIGNER_SUBJECT_INFO