| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |