Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(395)

Unified Diff: utility/vbutil_kernel.c

Issue 2729021: Clean up of key block functions (Closed) Base URL: ssh://gitrw.chromium.org/vboot_reference.git
Patch Set: More key block cleanup Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/vboot_common3_tests.c ('k') | utility/vbutil_keyblock.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utility/vbutil_kernel.c
diff --git a/utility/vbutil_kernel.c b/utility/vbutil_kernel.c
index 32f844c612e0cf80f3e38681058ecb6981b61f08..a9f7be4c99702a769185aafae6c4db7018008d51 100644
--- a/utility/vbutil_kernel.c
+++ b/utility/vbutil_kernel.c
@@ -326,7 +326,7 @@ static int Verify(const char* infile, const char* signpubkey) {
/* Verify key block */
key_block = (VbKeyBlockHeader*)blob;
- if (0 != VerifyKeyBlock(key_block, blob_size, sign_key)) {
+ if (0 != KeyBlockVerify(key_block, blob_size, sign_key)) {
error("Error verifying key block.\n");
return 1;
}
« no previous file with comments | « tests/vboot_common3_tests.c ('k') | utility/vbutil_keyblock.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698