mirror of https://github.com/acidanthera/audk.git
SecurityPkg: Remove temp return solution in PeiRsa2048Sha256 Section Lib
PeiCore supports EFI_PEI_SECURITY_PPI to handle section extraction failure. The wrong returning status is no longer needed. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Zhang Chao <chao.b.zhang@intel.com> Reviewed-by: Gao Liming <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18732 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
31b27ef1aa
commit
ca52754cfd
|
@ -357,12 +357,6 @@ Done:
|
||||||
FreePool (HashContext);
|
FreePool (HashContext);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
|
||||||
// Temp solution until PeiCore checks AUTH Status.
|
|
||||||
//
|
|
||||||
if ((*AuthenticationStatus & (EFI_AUTH_STATUS_TEST_FAILED | EFI_AUTH_STATUS_NOT_TESTED)) != 0) {
|
|
||||||
Status = EFI_ACCESS_DENIED;
|
|
||||||
}
|
|
||||||
DEBUG ((DEBUG_VERBOSE, "PeiRsa2048Sha256: Status = %r AuthenticationStatus = %08x\n", Status, *AuthenticationStatus));
|
DEBUG ((DEBUG_VERBOSE, "PeiRsa2048Sha256: Status = %r AuthenticationStatus = %08x\n", Status, *AuthenticationStatus));
|
||||||
|
|
||||||
return Status;
|
return Status;
|
||||||
|
|
Loading…
Reference in New Issue