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
f5eb6caf
Commit
f5eb6caf
authored
Aug 08, 2008
by
Juan Lang
Committed by
Alexandre Julliard
Aug 19, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add stub for CryptHashToBeSigned.
parent
8f74b60f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
cert.c
dlls/crypt32/cert.c
+9
-0
crypt32.spec
dlls/crypt32/crypt32.spec
+1
-1
No files found.
dlls/crypt32/cert.c
View file @
f5eb6caf
...
...
@@ -1530,6 +1530,15 @@ BOOL WINAPI CryptHashPublicKeyInfo(HCRYPTPROV_LEGACY hCryptProv, ALG_ID Algid,
return
ret
;
}
BOOL
WINAPI
CryptHashToBeSigned
(
HCRYPTPROV_LEGACY
hCryptProv
,
DWORD
dwCertEncodingType
,
const
BYTE
*
pbEncoded
,
DWORD
cbEncoded
,
BYTE
*
pbComputedHash
,
DWORD
*
pcbComputedHash
)
{
FIXME
(
"(%08lx, %08x, %p, %d, %p, %d): stub
\n
"
,
hCryptProv
,
dwCertEncodingType
,
pbEncoded
,
cbEncoded
,
pbComputedHash
,
*
pcbComputedHash
);
return
FALSE
;
}
BOOL
WINAPI
CryptSignCertificate
(
HCRYPTPROV_OR_NCRYPT_KEY_HANDLE
hCryptProv
,
DWORD
dwKeySpec
,
DWORD
dwCertEncodingType
,
const
BYTE
*
pbEncodedToBeSigned
,
DWORD
cbEncodedToBeSigned
,
PCRYPT_ALGORITHM_IDENTIFIER
pSignatureAlgorithm
,
...
...
dlls/crypt32/crypt32.spec
View file @
f5eb6caf
...
...
@@ -131,7 +131,7 @@
@ stdcall CryptHashCertificate(long long long ptr long ptr ptr)
@ stdcall CryptHashMessage(ptr long long ptr ptr ptr ptr ptr ptr)
@ stdcall CryptHashPublicKeyInfo(long long long long ptr ptr ptr)
@ st
ub CryptHashToBeSigned
@ st
dcall CryptHashToBeSigned(ptr long ptr long ptr ptr)
@ stub CryptImportPKCS8
@ stdcall CryptImportPublicKeyInfo(long long ptr ptr)
@ stdcall CryptImportPublicKeyInfoEx(long long ptr long long ptr ptr)
...
...
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