OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SigningTime
(Results
1 - 3
of
3
) sorted by null
/device/linaro/bootloader/edk2/CryptoPkg/Application/Cryptest/
TSVerify.c
[
all
...]
/device/linaro/bootloader/edk2/SecurityPkg/Pkcs7Verify/Pkcs7VerifyDxe/
Pkcs7VerifyDxe.c
329
@param
SigningTime
Pointer to the signing time.
332
@retval TRUE The
SigningTime
is not later than the RevocationTime.
333
@retval FALSE The
SigningTime
is later than the RevocationTime.
338
IN EFI_TIME *
SigningTime
,
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);
[
all
...]
/device/linaro/bootloader/edk2/SecurityPkg/Library/DxeImageVerificationLib/
DxeImageVerificationLib.c
[
all
...]
Completed in 88 milliseconds