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
a03d64b1
Commit
a03d64b1
authored
Nov 30, 2005
by
Stefan Leichter
Committed by
Alexandre Julliard
Nov 30, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for CryptVerifyMessageSignature.
parent
93b63566
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
cert.c
dlls/crypt32/cert.c
+10
-0
crypt32.spec
dlls/crypt32/crypt32.spec
+1
-1
No files found.
dlls/crypt32/cert.c
View file @
a03d64b1
...
...
@@ -3297,3 +3297,13 @@ BOOL WINAPI CryptUnregisterDefaultOIDFunction(DWORD dwEncodingType,
FIXME
(
"stub: %lx %s %s
\n
"
,
dwEncodingType
,
debugstr_a
(
pszFuncName
),
debugstr_w
(
pwszDll
));
return
FALSE
;
}
BOOL
WINAPI
CryptVerifyMessageSignature
(
/*PCRYPT_VERIFY_MESSAGE_PARA*/
void
*
pVerifyPara
,
DWORD
dwSignerIndex
,
const
BYTE
*
pbSignedBlob
,
DWORD
cbSignedBlob
,
BYTE
*
pbDecoded
,
DWORD
*
pcbDecoded
,
PCCERT_CONTEXT
*
ppSignerCert
)
{
FIXME
(
"stub: %p, %ld, %p, %ld, %p, %p, %p
\n
"
,
pVerifyPara
,
dwSignerIndex
,
pbSignedBlob
,
cbSignedBlob
,
pbDecoded
,
pcbDecoded
,
ppSignerCert
);
return
FALSE
;
}
dlls/crypt32/crypt32.spec
View file @
a03d64b1
...
...
@@ -162,7 +162,7 @@
@ stub CryptVerifyDetachedMessageHash
@ stub CryptVerifyDetachedMessageSignature
@ stub CryptVerifyMessageHash
@ st
ub CryptVerifyMessageSignature
@ st
dcall CryptVerifyMessageSignature(ptr long ptr long ptr ptr ptr)
@ stub CryptVerifyMessageSignatureWithKey
@ stub CryptVerifySignatureU
@ stdcall I_CryptAllocTls()
...
...
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