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

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

Issue 2815011: Remove unused files, and tidy the directory structure of the remaining ones. (Closed) Base URL: ssh://gitrw.chromium.org/vboot_reference.git
Patch Set: 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/signature_digest.c ('k') | misclibs/Makefile » ('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 #include "file_keys.h"
5 #include "signature_digest.h"
4 6
5 int main(void) 7 int main(void)
6 { 8 {
7 /* host_key.h */ 9 /* host_key.h */
8 PrivateKeyRead(0, 0); 10 PrivateKeyRead(0, 0);
9 PrivateKeyFree(0); 11 PrivateKeyFree(0);
10 PublicKeyAlloc(0, 0, 0); 12 PublicKeyAlloc(0, 0, 0);
11 PublicKeyRead(0); 13 PublicKeyRead(0);
12 PublicKeyReadKeyb(0, 0, 0); 14 PublicKeyReadKeyb(0, 0, 0);
13 PublicKeyWrite(0, 0); 15 PublicKeyWrite(0, 0);
(...skipping 11 matching lines...) Expand all
25 SignatureInit(0, 0, 0, 0); 27 SignatureInit(0, 0, 0, 0);
26 SignatureAlloc(0, 0); 28 SignatureAlloc(0, 0);
27 SignatureCopy(0, 0); 29 SignatureCopy(0, 0);
28 CalculateChecksum(0, 0); 30 CalculateChecksum(0, 0);
29 CalculateSignature(0, 0, 0); 31 CalculateSignature(0, 0, 0);
30 32
31 /* host_common.h */ 33 /* host_common.h */
32 CreateFirmwarePreamble(0, 0, 0, 0); 34 CreateFirmwarePreamble(0, 0, 0, 0);
33 CreateKernelPreamble(0, 0, 0, 0, 0, 0, 0); 35 CreateKernelPreamble(0, 0, 0, 0, 0, 0, 0);
34 36
37 /* file_keys.h */
38 BufferFromFile(0, 0);
39 RSAPublicKeyFromFile(0);
40 DigestFile(0, 0);
41 SignatureFile(0, 0, 0);
42
43 /* signature_digest.h */
44 PrependDigestInfo(0, 0);
45 SignatureDigest(0, 0, 0);
46 SignatureBuf(0, 0, 0, 0);
47
35 return 0; 48 return 0;
36 } 49 }
OLDNEW
« no previous file with comments | « host/lib/signature_digest.c ('k') | misclibs/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698