Searched defs:RevocationTime (Results 1 - 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/SecurityPkg/Pkcs7Verify/Pkcs7VerifyDxe/
H A DPkcs7VerifyDxe.c204 @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
496 EFI_TIME RevocationTime; local
[all...]
/device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
H A DSecureBootConfigNvData.h142 EFI_HII_TIME RevocationTime; // The revocation time of the certificate member in struct:__anon9225
H A DSecureBootConfigImpl.c1293 @param[in] RevocationTime The revocation time of the certificate.
1306 IN EFI_HII_TIME *RevocationTime,
1415 Time->Hour = RevocationTime->Hour;
1416 Time->Minute = RevocationTime->Minute;
1417 Time->Second = RevocationTime->Second;
3090 ConfigData->RevocationTime.Hour = CurrTime.Hour;
3091 ConfigData->RevocationTime.Minute = CurrTime.Minute;
3092 ConfigData->RevocationTime.Second = 0;
3670 &IfrNvData->RevocationTime,
1302 EnrollX509HashtoSigDB( IN SECUREBOOT_CONFIG_PRIVATE_DATA *Private, IN UINT32 HashAlg, IN EFI_HII_DATE *RevocationDate, IN EFI_HII_TIME *RevocationTime, IN BOOLEAN AlwaysRevocation ) argument
/device/linaro/bootloader/edk2/SecurityPkg/Library/DxeImageVerificationLib/
H A DDxeImageVerificationLib.c889 @param[out] RevocationTime Return the time that the certificate was revoked.
901 OUT EFI_TIME *RevocationTime
925 if ((RevocationTime == NULL) || (DbxList == NULL)) {
993 CopyMem (RevocationTime, (EFI_TIME *)(DbxCertHash + mHash[HashAlg].DigestLength), sizeof (EFI_TIME));
1102 @param RevocationTime A pointer to the revocation time.
1104 @retval TRUE The SigningTime is not later than the RevocationTime.
1105 @retval FALSE The SigningTime is later than the RevocationTime.
1111 IN EFI_TIME *RevocationTime
1114 if (SigningTime->Year != RevocationTime->Year) {
1115 return (BOOLEAN) (SigningTime->Year < RevocationTime
1346 EFI_TIME RevocationTime; local
1550 EFI_TIME RevocationTime; local
[all...]

Completed in 192 milliseconds