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
628d773e
Commit
628d773e
authored
Jul 28, 2008
by
Juan Lang
Committed by
Alexandre Julliard
Jul 29, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add stub for CryptHashMessage.
parent
bca6cbce
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
crypt32.spec
dlls/crypt32/crypt32.spec
+1
-1
message.c
dlls/crypt32/message.c
+12
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
628d773e
...
...
@@ -129,7 +129,7 @@
@ stdcall CryptGetOIDFunctionAddress(long long str long ptr ptr)
@ stdcall CryptGetOIDFunctionValue(long str str wstr ptr ptr ptr)
@ stdcall CryptHashCertificate(long long long ptr long ptr ptr)
@ st
ub CryptHashMessage
@ st
dcall CryptHashMessage(ptr long long ptr ptr ptr ptr ptr ptr)
@ stdcall CryptHashPublicKeyInfo(long long long long ptr ptr ptr)
@ stub CryptHashToBeSigned
@ stub CryptImportPKCS8
...
...
dlls/crypt32/message.c
View file @
628d773e
...
...
@@ -212,3 +212,15 @@ BOOL WINAPI CryptVerifyMessageSignature(PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara,
TRACE
(
"returning %d
\n
"
,
ret
);
return
ret
;
}
BOOL
WINAPI
CryptHashMessage
(
PCRYPT_HASH_MESSAGE_PARA
pHashPara
,
BOOL
fDetachedHash
,
DWORD
cToBeHashed
,
const
BYTE
*
rgpbToBeHashed
[],
DWORD
rgcbToBeHashed
[],
BYTE
*
pbHashedBlob
,
DWORD
*
pcbHashedBlob
,
BYTE
*
pbComputedHash
,
DWORD
*
pcbComputedHash
)
{
FIXME
(
"(%p, %d, %d, %p, %p, %p, %p, %p, %p): stub
\n
"
,
pHashPara
,
fDetachedHash
,
cToBeHashed
,
rgpbToBeHashed
,
rgcbToBeHashed
,
pbHashedBlob
,
pcbHashedBlob
,
pbComputedHash
,
pcbComputedHash
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
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