Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3cef67d5
Commit
3cef67d5
authored
Sep 08, 2008
by
Juan Lang
Committed by
Alexandre Julliard
Sep 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add stub for CryptVerifyMessageHash.
parent
7c835655
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
crypt32.spec
dlls/crypt32/crypt32.spec
+1
-1
message.c
dlls/crypt32/message.c
+10
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
3cef67d5
...
...
@@ -187,7 +187,7 @@
@ stdcall CryptVerifyCertificateSignatureEx(long long long ptr long ptr long ptr)
@ stdcall CryptVerifyDetachedMessageHash(ptr ptr long long ptr ptr ptr ptr)
@ stub CryptVerifyDetachedMessageSignature
@ st
ub CryptVerifyMessageHash
@ st
dcall CryptVerifyMessageHash(ptr ptr long ptr ptr ptr ptr)
@ stdcall CryptVerifyMessageSignature(ptr long ptr long ptr ptr ptr)
@ stub CryptVerifyMessageSignatureWithKey
@ stub CryptVerifySignatureU
...
...
dlls/crypt32/message.c
View file @
3cef67d5
...
...
@@ -318,3 +318,13 @@ BOOL WINAPI CryptVerifyDetachedMessageHash(PCRYPT_HASH_MESSAGE_PARA pHashPara,
}
return
ret
;
}
BOOL
WINAPI
CryptVerifyMessageHash
(
PCRYPT_HASH_MESSAGE_PARA
pHashPara
,
BYTE
*
pbHashedBlob
,
DWORD
cbHashedBlob
,
BYTE
*
pbToBeHashed
,
DWORD
*
pcbToBeHashed
,
BYTE
*
pbComputedHash
,
DWORD
*
pcbComputedHash
)
{
FIXME
(
"(%p, %p, %d, %p, %p, %p, %p): stub
\n
"
,
pHashPara
,
pbHashedBlob
,
cbHashedBlob
,
pbToBeHashed
,
pcbToBeHashed
,
pbComputedHash
,
pcbComputedHash
);
return
FALSE
;
}
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