2 * Copyright 2006 Juan Lang
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #define NONAMELESSUNION
26 #include "wine/debug.h"
27 #include "wine/unicode.h"
28 #include "crypt32_private.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(crypt
);
32 PCCRL_CONTEXT WINAPI
CertCreateCRLContext(DWORD dwCertEncodingType
,
33 const BYTE
* pbCrlEncoded
, DWORD cbCrlEncoded
)
35 PCRL_CONTEXT crl
= NULL
;
37 PCRL_INFO crlInfo
= NULL
;
40 TRACE("(%08x, %p, %d)\n", dwCertEncodingType
, pbCrlEncoded
,
43 if ((dwCertEncodingType
& CERT_ENCODING_TYPE_MASK
) != X509_ASN_ENCODING
)
45 SetLastError(E_INVALIDARG
);
48 ret
= CryptDecodeObjectEx(dwCertEncodingType
, X509_CERT_CRL_TO_BE_SIGNED
,
49 pbCrlEncoded
, cbCrlEncoded
, CRYPT_DECODE_ALLOC_FLAG
, NULL
,
55 crl
= Context_CreateDataContext(sizeof(CRL_CONTEXT
));
58 data
= CryptMemAlloc(cbCrlEncoded
);
65 memcpy(data
, pbCrlEncoded
, cbCrlEncoded
);
66 crl
->dwCertEncodingType
= dwCertEncodingType
;
67 crl
->pbCrlEncoded
= data
;
68 crl
->cbCrlEncoded
= cbCrlEncoded
;
69 crl
->pCrlInfo
= crlInfo
;
77 BOOL WINAPI
CertAddEncodedCRLToStore(HCERTSTORE hCertStore
,
78 DWORD dwCertEncodingType
, const BYTE
*pbCrlEncoded
, DWORD cbCrlEncoded
,
79 DWORD dwAddDisposition
, PCCRL_CONTEXT
*ppCrlContext
)
81 PCCRL_CONTEXT crl
= CertCreateCRLContext(dwCertEncodingType
,
82 pbCrlEncoded
, cbCrlEncoded
);
85 TRACE("(%p, %08x, %p, %d, %08x, %p)\n", hCertStore
, dwCertEncodingType
,
86 pbCrlEncoded
, cbCrlEncoded
, dwAddDisposition
, ppCrlContext
);
90 ret
= CertAddCRLContextToStore(hCertStore
, crl
, dwAddDisposition
,
92 CertFreeCRLContext(crl
);
99 typedef BOOL (*CrlCompareFunc
)(PCCRL_CONTEXT pCrlContext
, DWORD dwType
,
100 DWORD dwFlags
, const void *pvPara
);
102 static BOOL
compare_crl_any(PCCRL_CONTEXT pCrlContext
, DWORD dwType
,
103 DWORD dwFlags
, const void *pvPara
)
108 static BOOL
compare_crl_issued_by(PCCRL_CONTEXT pCrlContext
, DWORD dwType
,
109 DWORD dwFlags
, const void *pvPara
)
115 PCCERT_CONTEXT issuer
= pvPara
;
117 ret
= CertCompareCertificateName(issuer
->dwCertEncodingType
,
118 &issuer
->pCertInfo
->Subject
, &pCrlContext
->pCrlInfo
->Issuer
);
119 if (ret
&& (dwFlags
& CRL_FIND_ISSUED_BY_SIGNATURE_FLAG
))
120 ret
= CryptVerifyCertificateSignatureEx(0,
121 issuer
->dwCertEncodingType
,
122 CRYPT_VERIFY_CERT_SIGN_SUBJECT_CRL
, (void *)pCrlContext
,
123 CRYPT_VERIFY_CERT_SIGN_ISSUER_CERT
, (void *)issuer
, 0, NULL
);
124 if (ret
&& (dwFlags
& CRL_FIND_ISSUED_BY_AKI_FLAG
))
126 PCERT_EXTENSION ext
= CertFindExtension(
127 szOID_AUTHORITY_KEY_IDENTIFIER2
, pCrlContext
->pCrlInfo
->cExtension
,
128 pCrlContext
->pCrlInfo
->rgExtension
);
132 CERT_AUTHORITY_KEY_ID2_INFO
*info
;
135 if ((ret
= CryptDecodeObjectEx(X509_ASN_ENCODING
,
136 X509_AUTHORITY_KEY_ID2
, ext
->Value
.pbData
, ext
->Value
.cbData
,
137 CRYPT_DECODE_ALLOC_FLAG
, NULL
, &info
, &size
)))
139 if (info
->AuthorityCertIssuer
.cAltEntry
&&
140 info
->AuthorityCertSerialNumber
.cbData
)
142 PCERT_ALT_NAME_ENTRY directoryName
= NULL
;
145 for (i
= 0; !directoryName
&&
146 i
< info
->AuthorityCertIssuer
.cAltEntry
; i
++)
147 if (info
->AuthorityCertIssuer
.rgAltEntry
[i
].
148 dwAltNameChoice
== CERT_ALT_NAME_DIRECTORY_NAME
)
150 &info
->AuthorityCertIssuer
.rgAltEntry
[i
];
153 ret
= CertCompareCertificateName(
154 issuer
->dwCertEncodingType
,
155 &issuer
->pCertInfo
->Subject
,
156 &directoryName
->u
.DirectoryName
);
158 ret
= CertCompareIntegerBlob(
159 &issuer
->pCertInfo
->SerialNumber
,
160 &info
->AuthorityCertSerialNumber
);
164 FIXME("no supported name type in authority key id2\n");
168 else if (info
->KeyId
.cbData
)
170 if ((ext
= CertFindExtension(
171 szOID_SUBJECT_KEY_IDENTIFIER
,
172 issuer
->pCertInfo
->cExtension
,
173 issuer
->pCertInfo
->rgExtension
)))
175 if (info
->KeyId
.cbData
== ext
->Value
.cbData
)
176 ret
= !memcmp(info
->KeyId
.pbData
,
177 ext
->Value
.pbData
, info
->KeyId
.cbData
);
186 FIXME("unsupported value for AKI extension\n");
192 /* else: a CRL without an AKI matches any cert */
200 static BOOL
compare_crl_existing(PCCRL_CONTEXT pCrlContext
, DWORD dwType
,
201 DWORD dwFlags
, const void *pvPara
)
207 PCCRL_CONTEXT crl
= pvPara
;
209 ret
= CertCompareCertificateName(pCrlContext
->dwCertEncodingType
,
210 &pCrlContext
->pCrlInfo
->Issuer
, &crl
->pCrlInfo
->Issuer
);
217 static BOOL
compare_crl_issued_for(PCCRL_CONTEXT pCrlContext
, DWORD dwType
,
218 DWORD dwFlags
, const void *pvPara
)
220 const CRL_FIND_ISSUED_FOR_PARA
*para
= pvPara
;
223 ret
= CertCompareCertificateName(para
->pIssuerCert
->dwCertEncodingType
,
224 ¶
->pIssuerCert
->pCertInfo
->Issuer
, &pCrlContext
->pCrlInfo
->Issuer
);
228 PCCRL_CONTEXT WINAPI
CertFindCRLInStore(HCERTSTORE hCertStore
,
229 DWORD dwCertEncodingType
, DWORD dwFindFlags
, DWORD dwFindType
,
230 const void *pvFindPara
, PCCRL_CONTEXT pPrevCrlContext
)
233 CrlCompareFunc compare
;
235 TRACE("(%p, %d, %d, %d, %p, %p)\n", hCertStore
, dwCertEncodingType
,
236 dwFindFlags
, dwFindType
, pvFindPara
, pPrevCrlContext
);
241 compare
= compare_crl_any
;
243 case CRL_FIND_ISSUED_BY
:
244 compare
= compare_crl_issued_by
;
246 case CRL_FIND_EXISTING
:
247 compare
= compare_crl_existing
;
249 case CRL_FIND_ISSUED_FOR
:
250 compare
= compare_crl_issued_for
;
253 FIXME("find type %08x unimplemented\n", dwFindType
);
259 BOOL matches
= FALSE
;
261 ret
= pPrevCrlContext
;
263 ret
= CertEnumCRLsInStore(hCertStore
, ret
);
265 matches
= compare(ret
, dwFindType
, dwFindFlags
, pvFindPara
);
266 } while (ret
!= NULL
&& !matches
);
268 SetLastError(CRYPT_E_NOT_FOUND
);
272 SetLastError(CRYPT_E_NOT_FOUND
);
278 PCCRL_CONTEXT WINAPI
CertGetCRLFromStore(HCERTSTORE hCertStore
,
279 PCCERT_CONTEXT pIssuerContext
, PCCRL_CONTEXT pPrevCrlContext
, DWORD
*pdwFlags
)
281 static const DWORD supportedFlags
= CERT_STORE_SIGNATURE_FLAG
|
282 CERT_STORE_TIME_VALIDITY_FLAG
| CERT_STORE_BASE_CRL_FLAG
|
283 CERT_STORE_DELTA_CRL_FLAG
;
286 TRACE("(%p, %p, %p, %08x)\n", hCertStore
, pIssuerContext
, pPrevCrlContext
,
289 if (*pdwFlags
& ~supportedFlags
)
291 SetLastError(E_INVALIDARG
);
295 ret
= CertFindCRLInStore(hCertStore
, pIssuerContext
->dwCertEncodingType
,
296 0, CRL_FIND_ISSUED_BY
, pIssuerContext
, pPrevCrlContext
);
298 ret
= CertFindCRLInStore(hCertStore
, 0, 0, CRL_FIND_ANY
, NULL
,
302 if (*pdwFlags
& CERT_STORE_TIME_VALIDITY_FLAG
)
304 if (0 == CertVerifyCRLTimeValidity(NULL
, ret
->pCrlInfo
))
305 *pdwFlags
&= ~CERT_STORE_TIME_VALIDITY_FLAG
;
307 if (*pdwFlags
& CERT_STORE_SIGNATURE_FLAG
)
309 if (CryptVerifyCertificateSignatureEx(0, ret
->dwCertEncodingType
,
310 CRYPT_VERIFY_CERT_SIGN_SUBJECT_CRL
, (void *)ret
,
311 CRYPT_VERIFY_CERT_SIGN_ISSUER_CERT
, (void *)pIssuerContext
, 0,
313 *pdwFlags
&= ~CERT_STORE_SIGNATURE_FLAG
;
319 PCCRL_CONTEXT WINAPI
CertDuplicateCRLContext(PCCRL_CONTEXT pCrlContext
)
321 TRACE("(%p)\n", pCrlContext
);
323 Context_AddRef((void *)pCrlContext
, sizeof(CRL_CONTEXT
));
327 static void CrlDataContext_Free(void *context
)
329 PCRL_CONTEXT crlContext
= context
;
331 CryptMemFree(crlContext
->pbCrlEncoded
);
332 LocalFree(crlContext
->pCrlInfo
);
335 BOOL WINAPI
CertFreeCRLContext( PCCRL_CONTEXT pCrlContext
)
339 TRACE("(%p)\n", pCrlContext
);
342 ret
= Context_Release((void *)pCrlContext
, sizeof(CRL_CONTEXT
),
343 CrlDataContext_Free
);
347 DWORD WINAPI
CertEnumCRLContextProperties(PCCRL_CONTEXT pCRLContext
,
350 PCONTEXT_PROPERTY_LIST properties
= Context_GetProperties(
351 pCRLContext
, sizeof(CRL_CONTEXT
));
354 TRACE("(%p, %d)\n", pCRLContext
, dwPropId
);
357 ret
= ContextPropertyList_EnumPropIDs(properties
, dwPropId
);
363 static BOOL
CRLContext_SetProperty(PCCRL_CONTEXT context
, DWORD dwPropId
,
364 DWORD dwFlags
, const void *pvData
);
366 static BOOL
CRLContext_GetHashProp(PCCRL_CONTEXT context
, DWORD dwPropId
,
367 ALG_ID algID
, const BYTE
*toHash
, DWORD toHashLen
, void *pvData
,
370 BOOL ret
= CryptHashCertificate(0, algID
, 0, toHash
, toHashLen
, pvData
,
374 CRYPT_DATA_BLOB blob
= { *pcbData
, pvData
};
376 ret
= CRLContext_SetProperty(context
, dwPropId
, 0, &blob
);
381 static BOOL
CRLContext_GetProperty(PCCRL_CONTEXT context
, DWORD dwPropId
,
382 void *pvData
, DWORD
*pcbData
)
384 PCONTEXT_PROPERTY_LIST properties
=
385 Context_GetProperties(context
, sizeof(CRL_CONTEXT
));
387 CRYPT_DATA_BLOB blob
;
389 TRACE("(%p, %d, %p, %p)\n", context
, dwPropId
, pvData
, pcbData
);
392 ret
= ContextPropertyList_FindProperty(properties
, dwPropId
, &blob
);
398 *pcbData
= blob
.cbData
;
399 else if (*pcbData
< blob
.cbData
)
401 SetLastError(ERROR_MORE_DATA
);
402 *pcbData
= blob
.cbData
;
407 memcpy(pvData
, blob
.pbData
, blob
.cbData
);
408 *pcbData
= blob
.cbData
;
413 /* Implicit properties */
416 case CERT_SHA1_HASH_PROP_ID
:
417 ret
= CRLContext_GetHashProp(context
, dwPropId
, CALG_SHA1
,
418 context
->pbCrlEncoded
, context
->cbCrlEncoded
, pvData
,
421 case CERT_MD5_HASH_PROP_ID
:
422 ret
= CRLContext_GetHashProp(context
, dwPropId
, CALG_MD5
,
423 context
->pbCrlEncoded
, context
->cbCrlEncoded
, pvData
,
427 SetLastError(CRYPT_E_NOT_FOUND
);
430 TRACE("returning %d\n", ret
);
434 BOOL WINAPI
CertGetCRLContextProperty(PCCRL_CONTEXT pCRLContext
,
435 DWORD dwPropId
, void *pvData
, DWORD
*pcbData
)
439 TRACE("(%p, %d, %p, %p)\n", pCRLContext
, dwPropId
, pvData
, pcbData
);
444 case CERT_CERT_PROP_ID
:
445 case CERT_CRL_PROP_ID
:
446 case CERT_CTL_PROP_ID
:
447 SetLastError(E_INVALIDARG
);
450 case CERT_ACCESS_STATE_PROP_ID
:
453 *pcbData
= sizeof(DWORD
);
456 else if (*pcbData
< sizeof(DWORD
))
458 SetLastError(ERROR_MORE_DATA
);
459 *pcbData
= sizeof(DWORD
);
464 if (pCRLContext
->hCertStore
)
465 ret
= CertGetStoreProperty(pCRLContext
->hCertStore
, dwPropId
,
468 *(DWORD
*)pvData
= 0;
473 ret
= CRLContext_GetProperty(pCRLContext
, dwPropId
, pvData
,
479 static BOOL
CRLContext_SetProperty(PCCRL_CONTEXT context
, DWORD dwPropId
,
480 DWORD dwFlags
, const void *pvData
)
482 PCONTEXT_PROPERTY_LIST properties
=
483 Context_GetProperties(context
, sizeof(CRL_CONTEXT
));
486 TRACE("(%p, %d, %08x, %p)\n", context
, dwPropId
, dwFlags
, pvData
);
492 ContextPropertyList_RemoveProperty(properties
, dwPropId
);
499 case CERT_AUTO_ENROLL_PROP_ID
:
500 case CERT_CTL_USAGE_PROP_ID
: /* same as CERT_ENHKEY_USAGE_PROP_ID */
501 case CERT_DESCRIPTION_PROP_ID
:
502 case CERT_FRIENDLY_NAME_PROP_ID
:
503 case CERT_HASH_PROP_ID
:
504 case CERT_KEY_IDENTIFIER_PROP_ID
:
505 case CERT_MD5_HASH_PROP_ID
:
506 case CERT_NEXT_UPDATE_LOCATION_PROP_ID
:
507 case CERT_PUBKEY_ALG_PARA_PROP_ID
:
508 case CERT_PVK_FILE_PROP_ID
:
509 case CERT_SIGNATURE_HASH_PROP_ID
:
510 case CERT_ISSUER_PUBLIC_KEY_MD5_HASH_PROP_ID
:
511 case CERT_SUBJECT_NAME_MD5_HASH_PROP_ID
:
512 case CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID
:
513 case CERT_ENROLLMENT_PROP_ID
:
514 case CERT_CROSS_CERT_DIST_POINTS_PROP_ID
:
515 case CERT_RENEWAL_PROP_ID
:
517 PCRYPT_DATA_BLOB blob
= (PCRYPT_DATA_BLOB
)pvData
;
519 ret
= ContextPropertyList_SetProperty(properties
, dwPropId
,
520 blob
->pbData
, blob
->cbData
);
523 case CERT_DATE_STAMP_PROP_ID
:
524 ret
= ContextPropertyList_SetProperty(properties
, dwPropId
,
525 pvData
, sizeof(FILETIME
));
528 FIXME("%d: stub\n", dwPropId
);
532 TRACE("returning %d\n", ret
);
536 BOOL WINAPI
CertSetCRLContextProperty(PCCRL_CONTEXT pCRLContext
,
537 DWORD dwPropId
, DWORD dwFlags
, const void *pvData
)
541 TRACE("(%p, %d, %08x, %p)\n", pCRLContext
, dwPropId
, dwFlags
, pvData
);
543 /* Handle special cases for "read-only"/invalid prop IDs. Windows just
544 * crashes on most of these, I'll be safer.
549 case CERT_ACCESS_STATE_PROP_ID
:
550 case CERT_CERT_PROP_ID
:
551 case CERT_CRL_PROP_ID
:
552 case CERT_CTL_PROP_ID
:
553 SetLastError(E_INVALIDARG
);
556 ret
= CRLContext_SetProperty(pCRLContext
, dwPropId
, dwFlags
, pvData
);
557 TRACE("returning %d\n", ret
);
561 static BOOL
compare_dist_point_name(const CRL_DIST_POINT_NAME
*name1
,
562 const CRL_DIST_POINT_NAME
*name2
)
566 if (name1
->dwDistPointNameChoice
== name2
->dwDistPointNameChoice
)
569 if (name1
->dwDistPointNameChoice
== CRL_DIST_POINT_FULL_NAME
)
571 if (name1
->u
.FullName
.cAltEntry
== name2
->u
.FullName
.cAltEntry
)
575 for (i
= 0; match
&& i
< name1
->u
.FullName
.cAltEntry
; i
++)
577 const CERT_ALT_NAME_ENTRY
*entry1
=
578 &name1
->u
.FullName
.rgAltEntry
[i
];
579 const CERT_ALT_NAME_ENTRY
*entry2
=
580 &name2
->u
.FullName
.rgAltEntry
[i
];
582 if (entry1
->dwAltNameChoice
== entry2
->dwAltNameChoice
)
584 switch (entry1
->dwAltNameChoice
)
586 case CERT_ALT_NAME_URL
:
587 match
= !strcmpiW(entry1
->u
.pwszURL
,
590 case CERT_ALT_NAME_DIRECTORY_NAME
:
591 match
= (entry1
->u
.DirectoryName
.cbData
==
592 entry2
->u
.DirectoryName
.cbData
) &&
593 !memcmp(entry1
->u
.DirectoryName
.pbData
,
594 entry2
->u
.DirectoryName
.pbData
,
595 entry1
->u
.DirectoryName
.cbData
);
598 FIXME("unimplemented for type %d\n",
599 entry1
->dwAltNameChoice
);
616 static BOOL
match_dist_point_with_issuing_dist_point(
617 const CRL_DIST_POINT
*distPoint
, const CRL_ISSUING_DIST_POINT
*idp
)
621 /* While RFC 5280, section 4.2.1.13 recommends against segmenting
622 * CRL distribution points by reasons, it doesn't preclude doing so.
623 * "This profile RECOMMENDS against segmenting CRLs by reason code."
624 * If the issuing distribution point for this CRL is only valid for
625 * some reasons, only match if the reasons covered also match the
626 * reasons in the CRL distribution point.
628 if (idp
->OnlySomeReasonFlags
.cbData
)
630 if (idp
->OnlySomeReasonFlags
.cbData
== distPoint
->ReasonFlags
.cbData
)
635 for (i
= 0; match
&& i
< distPoint
->ReasonFlags
.cbData
; i
++)
636 if (idp
->OnlySomeReasonFlags
.pbData
[i
] !=
637 distPoint
->ReasonFlags
.pbData
[i
])
646 match
= compare_dist_point_name(&idp
->DistPointName
,
647 &distPoint
->DistPointName
);
651 BOOL WINAPI
CertIsValidCRLForCertificate(PCCERT_CONTEXT pCert
,
652 PCCRL_CONTEXT pCrl
, DWORD dwFlags
, void *pvReserved
)
657 TRACE("(%p, %p, %08x, %p)\n", pCert
, pCrl
, dwFlags
, pvReserved
);
662 if ((ext
= CertFindExtension(szOID_ISSUING_DIST_POINT
,
663 pCrl
->pCrlInfo
->cExtension
, pCrl
->pCrlInfo
->rgExtension
)))
665 CRL_ISSUING_DIST_POINT
*idp
;
668 if ((ret
= CryptDecodeObjectEx(pCrl
->dwCertEncodingType
,
669 X509_ISSUING_DIST_POINT
, ext
->Value
.pbData
, ext
->Value
.cbData
,
670 CRYPT_DECODE_ALLOC_FLAG
, NULL
, &idp
, &size
)))
672 if ((ext
= CertFindExtension(szOID_CRL_DIST_POINTS
,
673 pCert
->pCertInfo
->cExtension
, pCert
->pCertInfo
->rgExtension
)))
675 CRL_DIST_POINTS_INFO
*distPoints
;
677 if ((ret
= CryptDecodeObjectEx(pCert
->dwCertEncodingType
,
678 X509_CRL_DIST_POINTS
, ext
->Value
.pbData
, ext
->Value
.cbData
,
679 CRYPT_DECODE_ALLOC_FLAG
, NULL
, &distPoints
, &size
)))
684 for (i
= 0; !ret
&& i
< distPoints
->cDistPoint
; i
++)
685 ret
= match_dist_point_with_issuing_dist_point(
686 &distPoints
->rgDistPoint
[i
], idp
);
688 SetLastError(CRYPT_E_NO_MATCH
);
689 LocalFree(distPoints
);
694 /* no CRL dist points extension in cert, can't match the CRL
695 * (which has an issuing dist point extension)
698 SetLastError(CRYPT_E_NO_MATCH
);
708 static PCRL_ENTRY
CRYPT_FindCertificateInCRL(PCERT_INFO cert
, const CRL_INFO
*crl
)
711 PCRL_ENTRY entry
= NULL
;
713 for (i
= 0; !entry
&& i
< crl
->cCRLEntry
; i
++)
714 if (CertCompareIntegerBlob(&crl
->rgCRLEntry
[i
].SerialNumber
,
715 &cert
->SerialNumber
))
716 entry
= &crl
->rgCRLEntry
[i
];
720 BOOL WINAPI
CertFindCertificateInCRL(PCCERT_CONTEXT pCert
,
721 PCCRL_CONTEXT pCrlContext
, DWORD dwFlags
, void *pvReserved
,
722 PCRL_ENTRY
*ppCrlEntry
)
724 TRACE("(%p, %p, %08x, %p, %p)\n", pCert
, pCrlContext
, dwFlags
, pvReserved
,
727 *ppCrlEntry
= CRYPT_FindCertificateInCRL(pCert
->pCertInfo
,
728 pCrlContext
->pCrlInfo
);
732 BOOL WINAPI
CertVerifyCRLRevocation(DWORD dwCertEncodingType
,
733 PCERT_INFO pCertId
, DWORD cCrlInfo
, PCRL_INFO rgpCrlInfo
[])
736 PCRL_ENTRY entry
= NULL
;
738 TRACE("(%08x, %p, %d, %p)\n", dwCertEncodingType
, pCertId
, cCrlInfo
,
741 for (i
= 0; !entry
&& i
< cCrlInfo
; i
++)
742 entry
= CRYPT_FindCertificateInCRL(pCertId
, rgpCrlInfo
[i
]);
743 return entry
== NULL
;
746 LONG WINAPI
CertVerifyCRLTimeValidity(LPFILETIME pTimeToVerify
,
754 GetSystemTimeAsFileTime(&fileTime
);
755 pTimeToVerify
= &fileTime
;
757 if ((ret
= CompareFileTime(pTimeToVerify
, &pCrlInfo
->ThisUpdate
)) >= 0)
759 ret
= CompareFileTime(pTimeToVerify
, &pCrlInfo
->NextUpdate
);