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

Side by Side Diff: host/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 | « host/lib/host_keyblock.c ('k') | tests/vboot_common3_tests.c » ('j') | 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 "host_common.h" 3 #include "host_common.h"
4 4
5 int main(void) 5 int main(void)
6 { 6 {
7 /* host_key.h */ 7 /* host_key.h */
8 PrivateKeyRead(0, 0); 8 PrivateKeyRead(0, 0);
9 PrivateKeyFree(0); 9 PrivateKeyFree(0);
10 PublicKeyInit(0, 0, 0); 10 PublicKeyInit(0, 0, 0);
11 PublicKeyAlloc(0, 0, 0); 11 PublicKeyAlloc(0, 0, 0);
12 PublicKeyCopy(0, 0); 12 PublicKeyCopy(0, 0);
13 PublicKeyRead(0); 13 PublicKeyRead(0);
14 PublicKeyReadKeyb(0, 0, 0); 14 PublicKeyReadKeyb(0, 0, 0);
15 PublicKeyWrite(0, 0); 15 PublicKeyWrite(0, 0);
16 16
17 /* host_keyblock.h */
18 KeyBlockCreate(0, 0, 0);
19 KeyBlockRead(0);
20 KeyBlockWrite(0, 0);
21
17 /* host_misc.h */ 22 /* host_misc.h */
18 ReadFile(0, 0); 23 ReadFile(0, 0);
19 WriteFile(0, 0, 0); 24 WriteFile(0, 0, 0);
20 25
21 /* host_signature.h */ 26 /* host_signature.h */
22 SignatureInit(0, 0, 0, 0); 27 SignatureInit(0, 0, 0, 0);
23 SignatureAlloc(0, 0); 28 SignatureAlloc(0, 0);
24 SignatureCopy(0, 0); 29 SignatureCopy(0, 0);
25 CalculateChecksum(0, 0); 30 CalculateChecksum(0, 0);
26 CalculateSignature(0, 0, 0); 31 CalculateSignature(0, 0, 0);
27 32
28 /* host_common.h */ 33 /* host_common.h */
29 CreateKeyBlock(0, 0, 0);
30 CreateFirmwarePreamble(0, 0, 0, 0); 34 CreateFirmwarePreamble(0, 0, 0, 0);
31 CreateKernelPreamble(0, 0, 0, 0, 0, 0, 0); 35 CreateKernelPreamble(0, 0, 0, 0, 0, 0, 0);
32 36
33 return 0; 37 return 0;
34 } 38 }
OLDNEW
« no previous file with comments | « host/lib/host_keyblock.c ('k') | tests/vboot_common3_tests.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698