|
|
|
|
|
|
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
|
| Header File
| wintrust.h
| Unicode
| No
| Platform Notes
| None
|
|
|
WIN_CERTIFICATE
[New - Windows NT]
The WIN_CERTIFICATE structure contains the type and data for a WinTrust certificate. You can use
this generic data structure to store certificates for a variety of WinTrust
verification operations. A certificate typically contains encrypted information
that can be used to identify and verify the authenticity of a subject, such as a
software publisher or an executable file.
typedef struct _WIN_CERTIFICATE {
DWORD dwLength;
WORD wRevision;
WORD wCertificateType;
BYTE bCertificate[ANYSIZE_ARRAY];
} WIN_CERTIFICATE, *LPWIN_CERTIFICATE;
Members
dwLength
Specifies the size, in bytes, of the WIN_CERTIFICATE structure, including the
data in the bCertificate array.
wRevision
Indicates the revision level of the structure. Currently, this value must be
WIN_TRUST_REVISION_1_0.
wCertificateType
Specifies the type of certificate. This member can be one of the following
values.
Value
| Meaning
| WIN_CERT_TYPE_X509
| The certificate contains an X.509 Certificate.
| WIN_CERT_TYPE_PKCS_SIGNED_DATA
| The certificate contains a PKCS SignedData structure.
| WIN_CERT_TYPE_RESERVED_1
| Reserved.
|
bCertificate
A variable-sized array of bytes that contains the certificate data.
See Also
WinSubmitCertificate, WinTrustProviderSubmitCertificate, WinTrustSubjectCheckContentInfo, WinTrustSubjectGetCertHeader, WinTrustSubjectGetCertificate, WinTrustSubjectGetName
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|