Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f5e0195b
Commit
f5e0195b
authored
Aug 07, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Aug 08, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintrust: Always return ERROR_SUCCESS in WinVerifyTrust.
parent
4fade6d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
13 deletions
+1
-13
wintrust_main.c
dlls/wintrust/wintrust_main.c
+1
-13
No files found.
dlls/wintrust/wintrust_main.c
View file @
f5e0195b
...
...
@@ -100,26 +100,14 @@ BOOL WINAPI TrustIsCertificateSelfSigned( PCCERT_CONTEXT cert )
*/
LONG
WINAPI
WinVerifyTrust
(
HWND
hwnd
,
GUID
*
ActionID
,
WINTRUST_DATA
*
ActionData
)
{
static
const
GUID
gen_verify_v2
=
WINTRUST_ACTION_GENERIC_VERIFY_V2
;
FIXME
(
"%p %s %p
\n
"
,
hwnd
,
debugstr_guid
(
ActionID
),
ActionData
);
/* Trust providers can be found at:
* HKLM\SOFTWARE\Microsoft\Cryptography\Providers\Trust\CertCheck\
*
* Process Explorer expects a correct implementation, so we
* return TRUST_E_PROVIDER_UNKNOWN.
*
* Girotel needs ERROR_SUCCESS.
*
* For now return TRUST_E_PROVIDER_UNKNOWN only when
* ActionID = WINTRUST_ACTION_GENERIC_VERIFY_V2.
*
* Process Explorer is now happy with ERROR_SUCCESS
*/
if
(
IsEqualCLSID
(
ActionID
,
&
gen_verify_v2
))
return
TRUST_E_PROVIDER_UNKNOWN
;
return
ERROR_SUCCESS
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment