Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e11e1841
Commit
e11e1841
authored
Jun 03, 2011
by
Louis Lenders
Committed by
Alexandre Julliard
Jun 03, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add stub for PFXVerifyPassword.
parent
8ebf950b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
+10
-0
crypt32.spec
dlls/crypt32/crypt32.spec
+1
-0
decode.c
dlls/crypt32/decode.c
+7
-0
wincrypt.h
include/wincrypt.h
+2
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
e11e1841
...
...
@@ -225,6 +225,7 @@
@ stdcall PFXExportCertStoreEx(ptr ptr ptr ptr long)
@ stdcall PFXImportCertStore(ptr ptr long)
@ stdcall PFXIsPFXBlob(ptr)
@ stdcall PFXVerifyPassword(ptr wstr long)
@ stub RegCreateHKCUKeyExU
@ stub RegCreateKeyExU
@ stub RegDeleteValueU
...
...
dlls/crypt32/decode.c
View file @
e11e1841
...
...
@@ -6112,3 +6112,10 @@ HCERTSTORE WINAPI PFXImportCertStore(CRYPT_DATA_BLOB *pPFX, LPCWSTR szPassword,
FIXME_
(
crypt
)(
"(%p, %p, %08x): stub
\n
"
,
pPFX
,
szPassword
,
dwFlags
);
return
NULL
;
}
BOOL
WINAPI
PFXVerifyPassword
(
CRYPT_DATA_BLOB
*
pPFX
,
LPCWSTR
szPassword
,
DWORD
dwFlags
)
{
FIXME_
(
crypt
)(
"(%p, %p, %08x): stub
\n
"
,
pPFX
,
szPassword
,
dwFlags
);
return
FALSE
;
}
include/wincrypt.h
View file @
e11e1841
...
...
@@ -4496,6 +4496,8 @@ BOOL WINAPI PFXExportCertStoreEx(HCERTSTORE hStore, CRYPT_DATA_BLOB *pPFX,
LPCWSTR
szPassword
,
void
*
pvReserved
,
DWORD
dwFlags
);
BOOL
WINAPI
PFXExportCertStore
(
HCERTSTORE
hStore
,
CRYPT_DATA_BLOB
*
pPFX
,
LPCWSTR
szPassword
,
DWORD
dwFlags
);
BOOL
WINAPI
PFXVerifyPassword
(
CRYPT_DATA_BLOB
*
pPFX
,
LPCWSTR
szPassword
,
DWORD
dwFlags
);
/* cryptnet.dll functions */
BOOL
WINAPI
CryptCancelAsyncRetrieval
(
HCRYPTASYNC
hAsyncRetrieval
);
...
...
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