Added security info to UEFIExtract

This commit is contained in:
glgspg 2020-11-09 14:33:43 +01:00
parent 24cf452024
commit 10295bd0dd

View file

@ -79,6 +79,14 @@ int main(int argc, char *argv[])
} }
} }
// Get security info
UString secInfo = ffsParser.getSecurityInfo();
if (!secInfo.isEmpty()) {
std::cout << "------------------------------------------------------------------------" << std::endl;
std::cout << "Security Info" << std::endl;
std::cout << "------------------------------------------------------------------------" << std::endl;
std::cout << secInfo << std::endl;
}
// Create ffsDumper // Create ffsDumper
FfsDumper ffsDumper(&model); FfsDumper ffsDumper(&model);