OLD | NEW |
(Empty) | |
| 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 * |
| 5 * Utility for manipulating verified boot firmware images. |
| 6 */ |
| 7 |
| 8 #include <fcntl.h> |
| 9 #include <stdio.h> |
| 10 #include <stdlib.h> |
| 11 #include <sys/types.h> |
| 12 #include <sys/stat.h> |
| 13 #include <unistd.h> |
| 14 |
| 15 #include "firmware_image.h" |
| 16 #include "rsa_utility.h" |
| 17 #include "sha_utility.h" |
| 18 #include "utility.h" |
| 19 |
| 20 int main(int argc, char* argv[]) { |
| 21 /* TODO(gauravsh): TO BE IMPLEMENTED. */ |
| 22 return 0; |
| 23 } |
OLD | NEW |