crypt32: Add CertVerifyRevocation stub.
This commit is contained in:
parent
6974ab554e
commit
cf8db7305d
|
@ -1231,6 +1231,15 @@ PCCERT_CONTEXT WINAPI CertGetIssuerCertificateFromStore(HCERTSTORE hCertStore,
|
|||
return ret;
|
||||
}
|
||||
|
||||
BOOL WINAPI CertVerifyRevocation(DWORD dwEncodingType, DWORD dwRevType,
|
||||
DWORD cContext, void *rgpvContext[], DWORD dwFlags,
|
||||
PCERT_REVOCATION_PARA pRevPara, PCERT_REVOCATION_STATUS pRevStatus)
|
||||
{
|
||||
FIXME("(%08x, %d, %d, %p, %08x, %p, %p): stub\n", dwEncodingType, dwRevType,
|
||||
cContext, rgpvContext, dwFlags, pRevPara, pRevStatus);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
PCRYPT_ATTRIBUTE WINAPI CertFindAttribute(LPCSTR pszObjId, DWORD cAttr,
|
||||
CRYPT_ATTRIBUTE rgAttr[])
|
||||
{
|
||||
|
|
|
@ -90,7 +90,7 @@
|
|||
@ stdcall CertVerifyCRLRevocation(long ptr long ptr)
|
||||
@ stdcall CertVerifyCRLTimeValidity(ptr ptr)
|
||||
@ stub CertVerifyCTLUsage
|
||||
@ stub CertVerifyRevocation
|
||||
@ stdcall CertVerifyRevocation(long long long ptr long ptr ptr)
|
||||
@ stdcall CertVerifySubjectCertificateContext(ptr ptr ptr)
|
||||
@ stdcall CertVerifyTimeValidity(ptr ptr)
|
||||
@ stdcall CertVerifyValidityNesting(ptr ptr)
|
||||
|
|
Loading…
Reference in New Issue