mirror of https://github.com/acidanthera/audk.git
MdeModulePkg CapsuleApp: Remove a redundant function
The function DumpImageAuthentication that is never called has been removed. https://bugzilla.tianocore.org/show_bug.cgi?id=1062 Cc: Star Zeng <star.zeng@intel.com> Cc: Eric Dong <eric.dong@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: shenglei <shenglei.zhang@intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com>
This commit is contained in:
parent
0df5056012
commit
d82ebaa340
|
@ -106,37 +106,6 @@ DumpUxCapsule (
|
||||||
Print(L" OffsetY - 0x%x\n", DisplayCapsule->ImagePayload.OffsetY);
|
Print(L" OffsetY - 0x%x\n", DisplayCapsule->ImagePayload.OffsetY);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
Dump FMP image authentication information.
|
|
||||||
|
|
||||||
@param[in] Image The FMP capsule image
|
|
||||||
@param[in] ImageSize The size of the FMP capsule image in bytes.
|
|
||||||
|
|
||||||
@return the size of FMP authentication.
|
|
||||||
**/
|
|
||||||
UINTN
|
|
||||||
DumpImageAuthentication (
|
|
||||||
IN VOID *Image,
|
|
||||||
IN UINTN ImageSize
|
|
||||||
)
|
|
||||||
{
|
|
||||||
EFI_FIRMWARE_IMAGE_AUTHENTICATION *ImageAuthentication;
|
|
||||||
|
|
||||||
ImageAuthentication = Image;
|
|
||||||
if (CompareGuid(&ImageAuthentication->AuthInfo.CertType, &gEfiCertPkcs7Guid) ||
|
|
||||||
CompareGuid(&ImageAuthentication->AuthInfo.CertType, &gEfiCertTypeRsa2048Sha256Guid)) {
|
|
||||||
Print(L"[ImageAuthentication]\n");
|
|
||||||
Print(L" MonotonicCount - 0x%lx\n", ImageAuthentication->MonotonicCount);
|
|
||||||
Print(L"WIN_CERTIFICATE:\n");
|
|
||||||
Print(L" dwLength - 0x%x\n", ImageAuthentication->AuthInfo.Hdr.dwLength);
|
|
||||||
Print(L" wRevision - 0x%x\n", ImageAuthentication->AuthInfo.Hdr.wRevision);
|
|
||||||
Print(L" wCertificateType - 0x%x\n", ImageAuthentication->AuthInfo.Hdr.wCertificateType);
|
|
||||||
Print(L" CertType - %g\n", &ImageAuthentication->AuthInfo.CertType);
|
|
||||||
return sizeof(ImageAuthentication->MonotonicCount) + ImageAuthentication->AuthInfo.Hdr.dwLength;
|
|
||||||
} else {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Dump a non-nested FMP capsule.
|
Dump a non-nested FMP capsule.
|
||||||
|
|
Loading…
Reference in New Issue