SIGNER_CONTEXT structure

The SIGNER_CONTEXT structure contains a signed BLOB.

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_CONTEXT {
  DWORD cbSize;
  DWORD cbBlob;
  BYTE  *pbBlob;
} SIGNER_CONTEXT, *PSIGNER_CONTEXT;

Members

cbSize

The size, in bytes, of the structure.

cbBlob

The size, in bytes, of the pbBlob member.

pbBlob

A pointer to the signed BLOB.

Requirements

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

See also

SignerSign

SignerSignEx