CERT_KEYGEN_REQUEST_INFO
This structure contains information stored in the Netscape Keygen request. The subject and subject public key BLOB structures are encoded.
typedef struct _CERT_KEYGEN_REQUEST_INFO {
DWORD dwVersion;
CERT_PUBLIC_KEY_INFO SubjectPublicKeyInfo;
LPWSTR pwszChallengeString;// encoded as IA5
} CERT_KEYGEN_REQUEST_INFO, *PCERT_KEYGEN_REQUEST_INFO;
Members
- dwVersion
Version number of the certificate. CERT_V1 is the only defined version number. - SubjectPublicKeyInfo
The CERT_PUBLIC_KEY_INFO structure containing the encoded public key and its algorithm. - pwszChallengeString
Random printable string. The pwszChallengeString is used by the server to ensure that the key that it is certifying matches the client on the page.
Requirements
| Runs on | Versions | Defined in | Include | Link to |
|---|---|---|---|---|
| Windows CE OS | 3.0 or later | Wincrypt.h |
Note This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.
See Also
BLOB, CERT_PUBLIC_KEY_INFO, CERT_REQUEST_INFO
Last updated on Tuesday, July 13, 2004
© 1992-2000 Microsoft Corporation. All rights reserved.