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

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

Issue 3094003: Add license headers (Closed) Base URL: ssh://gitrw.chromium.org/vboot_reference.git
Patch Set: Created 10 years, 4 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 | « firmware/version.c ('k') | msc/nmakefile » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
1 #include <stdio.h> 5 #include <stdio.h>
2 6
3 #include "host_common.h" 7 #include "host_common.h"
4 #include "file_keys.h" 8 #include "file_keys.h"
5 #include "signature_digest.h" 9 #include "signature_digest.h"
6 10
7 int main(void) 11 int main(void)
8 { 12 {
9 /* host_key.h */ 13 /* host_key.h */
10 PrivateKeyReadPem(0, 0); 14 PrivateKeyReadPem(0, 0);
(...skipping 29 matching lines...) Expand all
40 DigestFile(0, 0); 44 DigestFile(0, 0);
41 SignatureFile(0, 0, 0); 45 SignatureFile(0, 0, 0);
42 46
43 /* signature_digest.h */ 47 /* signature_digest.h */
44 PrependDigestInfo(0, 0); 48 PrependDigestInfo(0, 0);
45 SignatureDigest(0, 0, 0); 49 SignatureDigest(0, 0, 0);
46 SignatureBuf(0, 0, 0, 0); 50 SignatureBuf(0, 0, 0, 0);
47 51
48 return 0; 52 return 0;
49 } 53 }
OLDNEW
« no previous file with comments | « firmware/version.c ('k') | msc/nmakefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698