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
44cb0906
Commit
44cb0906
authored
Apr 11, 2005
by
Michael Jung
Committed by
Alexandre Julliard
Apr 11, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make crypt functions more robust in case of incorrect api usage.
parent
962a5e77
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
66 additions
and
19 deletions
+66
-19
crypt.c
dlls/advapi32/crypt.c
+63
-19
crypt.h
dlls/advapi32/crypt.h
+3
-0
crypt.c
dlls/advapi32/tests/crypt.c
+0
-0
No files found.
dlls/advapi32/crypt.c
View file @
44cb0906
This diff is collapsed.
Click to expand it.
dlls/advapi32/crypt.h
View file @
44cb0906
...
...
@@ -56,8 +56,11 @@ typedef struct tagPROVFUNCS
BOOL
(
WINAPI
*
pCPVerifySignature
)(
HCRYPTPROV
hProv
,
HCRYPTHASH
hHash
,
CONST
BYTE
*
pbSignature
,
DWORD
dwSigLen
,
HCRYPTKEY
hPubKey
,
LPCWSTR
sDescription
,
DWORD
dwFlags
);
}
PROVFUNCS
,
*
PPROVFUNCS
;
#define MAGIC_CRYPTPROV 0xA39E741F
typedef
struct
tagCRYPTPROV
{
DWORD
dwMagic
;
UINT
refcount
;
HMODULE
hModule
;
PPROVFUNCS
pFuncs
;
...
...
dlls/advapi32/tests/crypt.c
View file @
44cb0906
This diff is collapsed.
Click to expand it.
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