mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-28 08:48:59 +00:00
consolidate case statement
This commit is contained in:
parent
866e76545a
commit
a784ccb9bc
@ -527,9 +527,12 @@ public class TpmPcrEvent {
|
|||||||
vendorTableFileStatus = efiVar.getVendorTableFileStatus();
|
vendorTableFileStatus = efiVar.getVendorTableFileStatus();
|
||||||
break;
|
break;
|
||||||
case EvConstants.EV_EFI_VARIABLE_BOOT:
|
case EvConstants.EV_EFI_VARIABLE_BOOT:
|
||||||
UefiVariable efiVarBoot = new UefiVariable(content);
|
case EvConstants.EV_EFI_VARIABLE_AUTHORITY:
|
||||||
description += "Event Content:\n" + efiVarBoot.toString();
|
case EvConstants.EV_EFI_SPDM_DEVICE_POLICY:
|
||||||
vendorTableFileStatus = efiVarBoot.getVendorTableFileStatus();
|
case EvConstants.EV_EFI_SPDM_DEVICE_AUTHORITY:
|
||||||
|
UefiVariable efiVar2 = new UefiVariable(content);
|
||||||
|
description += "Event Content:\n" + efiVar2.toString();
|
||||||
|
vendorTableFileStatus = efiVar2.getVendorTableFileStatus();
|
||||||
break;
|
break;
|
||||||
case EvConstants.EV_EFI_BOOT_SERVICES_APPLICATION:
|
case EvConstants.EV_EFI_BOOT_SERVICES_APPLICATION:
|
||||||
EvEfiBootServicesApp bootServices = new EvEfiBootServicesApp(content);
|
EvEfiBootServicesApp bootServices = new EvEfiBootServicesApp(content);
|
||||||
@ -557,23 +560,12 @@ public class TpmPcrEvent {
|
|||||||
break;
|
break;
|
||||||
case EvConstants.EV_EFI_HCRTM_EVENT:
|
case EvConstants.EV_EFI_HCRTM_EVENT:
|
||||||
break;
|
break;
|
||||||
case EvConstants.EV_EFI_VARIABLE_AUTHORITY:
|
|
||||||
UefiVariable efiVarAuth = new UefiVariable(content);
|
|
||||||
description += "Event Content:\n" + efiVarAuth.toString();
|
|
||||||
vendorTableFileStatus = efiVarAuth.getVendorTableFileStatus();
|
|
||||||
break;
|
|
||||||
case EvConstants.EV_EFI_SPDM_FIRMWARE_BLOB:
|
case EvConstants.EV_EFI_SPDM_FIRMWARE_BLOB:
|
||||||
description += "Event Content:\n" + new EvEfiSpdmDeviceSecurityEvent(content).toString();
|
description += "Event Content:\n" + new EvEfiSpdmDeviceSecurityEvent(content).toString();
|
||||||
break;
|
break;
|
||||||
case EvConstants.EV_EFI_SPDM_FIRMWARE_CONFIG:
|
case EvConstants.EV_EFI_SPDM_FIRMWARE_CONFIG:
|
||||||
description += "Event Content:\n" + new EvEfiSpdmDeviceSecurityEvent(content).toString();
|
description += "Event Content:\n" + new EvEfiSpdmDeviceSecurityEvent(content).toString();
|
||||||
break;
|
break;
|
||||||
case EvConstants.EV_EFI_SPDM_DEVICE_POLICY:
|
|
||||||
case EvConstants.EV_EFI_SPDM_DEVICE_AUTHORITY:
|
|
||||||
UefiVariable efiSpdmDevPol = new UefiVariable(content);
|
|
||||||
description += "Event Content:\n" + efiSpdmDevPol.toString();
|
|
||||||
vendorTableFileStatus = efiSpdmDevPol.getVendorTableFileStatus();
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
description += " Unknown Event found" + "\n";
|
description += " Unknown Event found" + "\n";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user