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

Side by Side Diff: src/platform/vboot_reference/tests/rollback_index_mock.c

Issue 1574005: VBoot Reference: Refactor Part 2 - Crypto Libraries (Closed)
Patch Set: . Created 10 years, 8 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
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « src/platform/vboot_reference/tests/kernel_verify_benchmark.c ('k') | src/platform/vboot_reference/tests/rsa_padding_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698