The WinVerifyTrust function performs a specified verification action on a specified subject. The function passes the inquiry to the trust provider, if any, that supports the action identifier.
LONG WinVerifyTrust(
HWND hwnd, |
// handle to a window for interacting with the user |
GUID *ActionID, |
// pointer to a trust provider action identifier |
LPVOID ActionData |
// pointer to a buffer containing action-specific data |
); |
This parameter can be one of the following values.
Value |
Meaning |
INVALID_HANDLE_VALUE |
There is no interactive user. The trust provider performs the verification action without the user’s assistance. |
Zero |
The trust provider can use the interactive desktop to display its user interface. |
A valid window handle |
A trust provider can treat any value other than INVALID_HANDLE_VALUE or zero as a valid window handle that it can use to interact with the user. |
The WinTrust service is designed to work with trust providers implemented by third parties. Each trust provider provides its own unique set of action identifiers. For information about the action identifiers supported by a trust provider, see the documentation for that trust provider.
For example, Microsoft provides a Software Publisher Trust Provider that can establish the trustworthiness of software being downloaded from a public network, such as the internet. The Software Publisher Trust Provider supports the following action identifiers.
Value |
Description |
WIN_SPUB_ACTION_TRUSTED_PUBLISHER | |
The ActionData parameter is a pointer to a WIN_SPUB_TRUSTED_PUBLISHER_DATA structure. | |
WIN_SPUB_ACTION_NT_ACTIVATE_IMAGE | |
The ActionData parameter is a pointer to a WIN_TRUST_ACTDATA_CONTEXT_WITH_SUBJECT structure. | |
WIN_SPUB_ACTION_PUBLISHED_SOFTWARE | |
The ActionData parameter is a pointer to a WIN_TRUST_ACTDATA_CONTEXT_WITH_SUBJECT structure. |
The format of the data depends on the action identifier. For information about the data required for a specific action identifier, see the documentation for the trust provider that supports that action.
If the trust provider verifies that the subject is trusted for the specified action, the return value is ERROR_SUCCESS.
Otherwise, the return value is the status code returned by the trust provider. For example, a trust provider might indicate that the subject is not trusted, or is trusted but with limitations or warnings. The return value can be a trust-provider-specific value described in the documentation for an individual trust provider, or it can be one of the following error codes.
Value |
Meaning |
TRUST_E_SUBJECT_NOT_TRUSTED |
The subject failed the specified verification action. Most trust providers return a more detailed error code that describes the reason for the failure. |
TRUST_E_PROVIDER_UNKNOWN |
The trust provider is not recognized on this system. |
TRUST_E_ACTION_UNKNOWN |
The trust provider does not support the specified action. |
TRUST_E_SUBJECT_FORM_UNKNOWN |
The trust provider does not support the form specified for the subject. |
The WinVerifyTrust function enables applications to invoke a trust provider to verify that a specified subject satisfies the criteria of a specified verification operation. The ActionID parameter identifies the verification operation, and the ActionData parameter identifies the subject. A trust provider is a DLL registered with WinTrust. When you call WinVerifyTrust, the WinTrust service forwards the call to the registered trust provider, if there is one, that supports the specified action identifier.
For example, the Software Publisher Trust Provider can verify that an executable image file comes from a trusted software publisher and that the file has not been modified since it was published. In this case, the ActionData parameter specifies the name of the file and the type of file, such as a Microsoft Portable Executable image file or a Java class file.
Each trust provider supports a specific set of actions that it can evaluate. Each action has a globally unique identifier (GUID) that identifies it. A trust provider can support any number of action identifiers, but two trust providers cannot support the same action identifier.
GUID, WIN_TRUST_ACTDATA_CONTEXT_WITH_SUBJECT
file: /Techref/os/win/api/win32/func/src/f91_32.htm, 8KB, , updated: 2000/4/7 11:13, local time: 2024/11/5 05:35,
3.15.149.144:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/os/win/api/win32/func/src/f91_32.htm"> WinVerifyTrust</A> |
Did you find what you needed? |