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
3bea7f94
Commit
3bea7f94
authored
Jun 25, 2010
by
Alexander Morozov
Committed by
Alexandre Julliard
Sep 13, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add stub for CryptSignMessage.
parent
dfb88608
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
crypt32.spec
dlls/crypt32/crypt32.spec
+1
-1
message.c
dlls/crypt32/message.c
+9
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
3bea7f94
...
...
@@ -181,7 +181,7 @@
@ stub CryptSignAndEncryptMessage
@ stdcall CryptSignCertificate(long long long ptr long ptr ptr ptr ptr)
@ stub CryptSignHashU
@ st
ub CryptSignMessage
@ st
dcall CryptSignMessage(ptr long long ptr ptr ptr ptr)
@ stub CryptSignMessageWithKey
@ stdcall CryptUnprotectData(ptr ptr ptr ptr ptr long ptr)
@ stdcall CryptUnregisterDefaultOIDFunction(long str wstr)
...
...
dlls/crypt32/message.c
View file @
3bea7f94
...
...
@@ -415,3 +415,12 @@ BOOL WINAPI CryptVerifyMessageHash(PCRYPT_HASH_MESSAGE_PARA pHashPara,
}
return
ret
;
}
BOOL
WINAPI
CryptSignMessage
(
PCRYPT_SIGN_MESSAGE_PARA
pSignPara
,
BOOL
fDetachedSignature
,
DWORD
cToBeSigned
,
const
BYTE
*
rgpbToBeSigned
[],
DWORD
rgcbToBeSigned
[],
BYTE
*
pbSignedBlob
,
DWORD
*
pcbSignedBlob
)
{
FIXME
(
"(%p, %d, %d, %p, %p, %p, %p): stub
\n
"
,
pSignPara
,
fDetachedSignature
,
cToBeSigned
,
rgpbToBeSigned
,
rgcbToBeSigned
,
pbSignedBlob
,
pcbSignedBlob
);
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