Merge pull request #226 from krsh/new_engine

Added security info to UEFIExtract
This commit is contained in:
Nikolaj Schlej 2020-11-10 02:08:11 -08:00 committed by GitHub
commit 78714f6755
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
FfsDumper ffsDumper(&model);