CERT_KEYGEN_REQUEST_INFO (Compact 2013)

3/28/2014

This structure contains information stored in a Keygen request. The subject and subject public key BLOB (Cryptography) structures are encoded.

Syntax

typedef struct _CERT_KEYGEN_REQUEST_INFO {
  DWORD dwVersion;
  CERT_PUBLIC_KEY_INFO SubjectPublicKeyInfo;
  LPWSTR pwszChallengeString;
} CERT_KEYGEN_REQUEST_INFO, *PCERT_KEYGEN_REQUEST_INFO;

Members

  • dwVersion
    Version number of the certificate. CERT_V1 is the only defined version number.
  • SubjectPublicKeyInfo
    CERT_PUBLIC_KEY_INFO structure containing the encoded public key and its algorithm.
  • pwszChallengeString
    Random printable string. The server uses this member to ensure that the key that it is certifying matches the client on the page.

Requirements

Header

wincrypt.h

See Also

Reference

Cryptography Structures
BLOB (Cryptography)
CERT_PUBLIC_KEY_INFO
CERT_REQUEST_INFO