crypt32: Add stub for PFXVerifyPassword.
This commit is contained in:
parent
8ebf950b8f
commit
e11e1841f3
|
@ -225,6 +225,7 @@
|
||||||
@ stdcall PFXExportCertStoreEx(ptr ptr ptr ptr long)
|
@ stdcall PFXExportCertStoreEx(ptr ptr ptr ptr long)
|
||||||
@ stdcall PFXImportCertStore(ptr ptr long)
|
@ stdcall PFXImportCertStore(ptr ptr long)
|
||||||
@ stdcall PFXIsPFXBlob(ptr)
|
@ stdcall PFXIsPFXBlob(ptr)
|
||||||
|
@ stdcall PFXVerifyPassword(ptr wstr long)
|
||||||
@ stub RegCreateHKCUKeyExU
|
@ stub RegCreateHKCUKeyExU
|
||||||
@ stub RegCreateKeyExU
|
@ stub RegCreateKeyExU
|
||||||
@ stub RegDeleteValueU
|
@ stub RegDeleteValueU
|
||||||
|
|
|
@ -6112,3 +6112,10 @@ HCERTSTORE WINAPI PFXImportCertStore(CRYPT_DATA_BLOB *pPFX, LPCWSTR szPassword,
|
||||||
FIXME_(crypt)("(%p, %p, %08x): stub\n", pPFX, szPassword, dwFlags);
|
FIXME_(crypt)("(%p, %p, %08x): stub\n", pPFX, szPassword, dwFlags);
|
||||||
return NULL;
|
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;
|
||||||
|
}
|
||||||
|
|
|
@ -4496,6 +4496,8 @@ BOOL WINAPI PFXExportCertStoreEx(HCERTSTORE hStore, CRYPT_DATA_BLOB *pPFX,
|
||||||
LPCWSTR szPassword, void *pvReserved, DWORD dwFlags);
|
LPCWSTR szPassword, void *pvReserved, DWORD dwFlags);
|
||||||
BOOL WINAPI PFXExportCertStore(HCERTSTORE hStore, CRYPT_DATA_BLOB *pPFX,
|
BOOL WINAPI PFXExportCertStore(HCERTSTORE hStore, CRYPT_DATA_BLOB *pPFX,
|
||||||
LPCWSTR szPassword, DWORD dwFlags);
|
LPCWSTR szPassword, DWORD dwFlags);
|
||||||
|
BOOL WINAPI PFXVerifyPassword(CRYPT_DATA_BLOB *pPFX, LPCWSTR szPassword,
|
||||||
|
DWORD dwFlags);
|
||||||
|
|
||||||
/* cryptnet.dll functions */
|
/* cryptnet.dll functions */
|
||||||
BOOL WINAPI CryptCancelAsyncRetrieval(HCRYPTASYNC hAsyncRetrieval);
|
BOOL WINAPI CryptCancelAsyncRetrieval(HCRYPTASYNC hAsyncRetrieval);
|
||||||
|
|
Loading…
Reference in New Issue