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

Side by Side Diff: vboot_firmware/linktest/main.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 unified diff | Download patch
« no previous file with comments | « vboot_firmware/lib/vboot_kernel.c ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include <stdio.h> 1 #include <stdio.h>
2 2
3 #include "cgptlib.h" 3 #include "cgptlib.h"
4 #include "firmware_image_fw.h" 4 #include "firmware_image_fw.h"
5 #include "kernel_image_fw.h" 5 #include "kernel_image_fw.h"
6 #include "load_firmware_fw.h" 6 #include "load_firmware_fw.h"
7 #include "load_kernel_fw.h" 7 #include "load_kernel_fw.h"
8 #include "rollback_index.h" 8 #include "rollback_index.h"
9 #include "tlcl.h" 9 #include "tlcl.h"
10 #include "vboot_common.h" 10 #include "vboot_common.h"
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 OffsetOf(0, 0); 72 OffsetOf(0, 0);
73 GetPublicKeyData(0); 73 GetPublicKeyData(0);
74 GetPublicKeyDataC(0); 74 GetPublicKeyDataC(0);
75 GetSignatureData(0); 75 GetSignatureData(0);
76 GetSignatureDataC(0); 76 GetSignatureDataC(0);
77 VerifyMemberInside(0, 0, 0, 0, 0, 0); 77 VerifyMemberInside(0, 0, 0, 0, 0, 0);
78 VerifyPublicKeyInside(0, 0, 0); 78 VerifyPublicKeyInside(0, 0, 0);
79 VerifySignatureInside(0, 0, 0); 79 VerifySignatureInside(0, 0, 0);
80 PublicKeyToRSA(0); 80 PublicKeyToRSA(0);
81 VerifyData(0, 0, 0); 81 VerifyData(0, 0, 0);
82 VerifyKeyBlock(0, 0, 0); 82 KeyBlockVerify(0, 0, 0);
83 VerifyFirmwarePreamble2(0, 0, 0); 83 VerifyFirmwarePreamble2(0, 0, 0);
84 VerifyKernelPreamble2(0, 0, 0); 84 VerifyKernelPreamble2(0, 0, 0);
85 85
86 /* vboot_kernel.h */ 86 /* vboot_kernel.h */
87 LoadKernel2(0); 87 LoadKernel2(0);
88 88
89 /* vboot_firmware.h */ 89 /* vboot_firmware.h */
90 UpdateFirmwareBodyHash2(0, 0); 90 UpdateFirmwareBodyHash2(0, 0);
91 LoadFirmware2(0); 91 LoadFirmware2(0);
92 92
93 return 0; 93 return 0;
94 } 94 }
OLDNEW
« no previous file with comments | « vboot_firmware/lib/vboot_kernel.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698