Home | History | Annotate | Download | only in Pkcs7VerifyDxe

Lines Matching refs:RevocationTime

204   @param[out] RevocationTime  Return the time that the certificate was revoked.

215 OUT EFI_TIME *RevocationTime
228 if ((RevocationTime == NULL) || (RevokedDb == NULL)) {
289 RevocationTime,
330 @param RevocationTime Pointer to the revocation time.
332 @retval TRUE The SigningTime is not later than the RevocationTime.
333 @retval FALSE The SigningTime is later than the RevocationTime.
339 IN EFI_TIME *RevocationTime
342 if (SigningTime->Year != RevocationTime->Year) {
343 return (BOOLEAN) (SigningTime->Year < RevocationTime->Year);
344 } else if (SigningTime->Month != RevocationTime->Month) {
345 return (BOOLEAN) (SigningTime->Month < RevocationTime->Month);
346 } else if (SigningTime->Day != RevocationTime->Day) {
347 return (BOOLEAN) (SigningTime->Day < RevocationTime->Day);
348 } else if (SigningTime->Hour != RevocationTime->Hour) {
349 return (BOOLEAN) (SigningTime->Hour < RevocationTime->Hour);
350 } else if (SigningTime->Minute != RevocationTime->Minute) {
351 return (BOOLEAN) (SigningTime->Minute < RevocationTime->Minute);
354 return (BOOLEAN) (SigningTime->Second <= RevocationTime->Second);
366 @param[in] RevocationTime The time that the certificate was revoked.
379 IN EFI_TIME *RevocationTime
391 // If no supplied database for verification or RevocationTime is zero,
394 if ((TimeStampDb == NULL) || (IsTimeZero (RevocationTime))) {
400 // RevocationTime is non-zero, the certificate should be considered to be revoked
434 if (CompareTimestamp (&SigningTime, RevocationTime)) {
496 EFI_TIME RevocationTime;
583 if (IsCertHashRevoked (Cert, CertSize, RevokedDb, &RevocationTime)) {
588 if (IsValidTimestamp (SignedData, SignedDataSize, TimeStampDb, &RevocationTime)) {