| OLD | NEW |
| 1 /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 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 | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
| 4 * | 4 * |
| 5 * Mock rollback index library for testing. | 5 * Mock rollback index library for testing. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "rollback_index.h" | 8 #include "rollback_index.h" |
| 9 | 9 |
| 10 #include <stdint.h> |
| 10 #include <stdio.h> | 11 #include <stdio.h> |
| 11 #include <stdint.h> | |
| 12 | 12 |
| 13 uint16_t g_firmware_key_version = 0; | 13 uint16_t g_firmware_key_version = 0; |
| 14 uint16_t g_firmware_version = 0; | 14 uint16_t g_firmware_version = 0; |
| 15 uint16_t g_kernel_key_version = 0; | 15 uint16_t g_kernel_key_version = 0; |
| 16 uint16_t g_kernel_version = 0; | 16 uint16_t g_kernel_version = 0; |
| 17 | 17 |
| 18 void SetupTPM(void) { | 18 void SetupTPM(void) { |
| 19 #ifndef NDEBUG | 19 #ifndef NDEBUG |
| 20 fprintf(stderr, "Rollback Index Library Mock: TPM initialized.\n"); | 20 fprintf(stderr, "Rollback Index Library Mock: TPM initialized.\n"); |
| 21 #endif | 21 #endif |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 fprintf(stderr, "Rollback Index Library Mock: Stored Version written.\n"); | 58 fprintf(stderr, "Rollback Index Library Mock: Stored Version written.\n"); |
| 59 #endif | 59 #endif |
| 60 return 1; | 60 return 1; |
| 61 } | 61 } |
| 62 | 62 |
| 63 void LockStoredVersion(int type) { | 63 void LockStoredVersion(int type) { |
| 64 #ifndef NDEBUG | 64 #ifndef NDEBUG |
| 65 fprintf(stderr, "Rollback Index Library Mock: Version Locked.\n"); | 65 fprintf(stderr, "Rollback Index Library Mock: Version Locked.\n"); |
| 66 #endif | 66 #endif |
| 67 } | 67 } |
| OLD | NEW |