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

Side by Side Diff: host/linktest/main.c

Issue 2745007: Major refactoring of structures, with unit tests. (Closed) Base URL: ssh://gitrw.chromium.org/vboot_reference.git
Patch Set: Implemented LoadFirmware2() 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
OLDNEW
(Empty)
1 #include <stdio.h>
2
3 #include "host_common.h"
4
5 int main(void)
6 {
7 /* host_key.h */
8 PrivateKeyRead(0, 0);
9 PrivateKeyFree(0);
10 PublicKeyInit(0, 0, 0);
11 PublicKeyAlloc(0, 0, 0);
12 PublicKeyCopy(0, 0);
13 PublicKeyRead(0, 0, 0);
14
15 /* host_signature.h */
16 SignatureInit(0, 0, 0, 0);
17 SignatureAlloc(0, 0);
18 SignatureCopy(0, 0);
19 CalculateChecksum(0, 0);
20 CalculateSignature(0, 0, 0);
21
22 /* host_common.h */
23 CreateKeyBlock(0, 0, 0);
24 CreateFirmwarePreamble(0, 0, 0, 0);
25 CreateKernelPreamble(0, 0, 0, 0, 0, 0);
26
27 return 0;
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698