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

Unified Diff: host/include/host_common.h

Issue 2745007: Major refactoring of structures, with unit tests. (Closed) Base URL: ssh://gitrw.chromium.org/vboot_reference.git
Patch Set: Implemented LoadFirmware2() Created 10 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « host/Makefile ('k') | host/include/host_key.h » ('j') | host/lib/host_key.c » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: host/include/host_common.h
diff --git a/host/include/host_common.h b/host/include/host_common.h
new file mode 100644
index 0000000000000000000000000000000000000000..cd7c06318ed95a29147b2596d8a17aa122127708
--- /dev/null
+++ b/host/include/host_common.h
@@ -0,0 +1,51 @@
+/* Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ *
+ * Host-side functions for verified boot.
+ */
+
+#ifndef VBOOT_REFERENCE_HOST_COMMON_H_
+#define VBOOT_REFERENCE_HOST_COMMON_H_
+
+#include <stdint.h>
+
+#include "cryptolib.h"
+#include "host_key.h"
+#include "host_signature.h"
+#include "utility.h"
+#include "vboot_struct.h"
+
+
+/* Create a key block header containing [data_key] and [flags], signed
+ * by [signing_key]. Caller owns the returned pointer, and must free
+ * it with Free(). */
+VbKeyBlockHeader* CreateKeyBlock(const VbPublicKey* data_key,
+ const VbPrivateKey* signing_key,
+ uint64_t flags);
+
+
+/* Creates a firmware preamble, signed with [signing_key].
+ * Caller owns the returned pointer, and must free it with Free().
+ *
+ * Returns NULL if error. */
+VbFirmwarePreambleHeader* CreateFirmwarePreamble(
+ uint64_t firmware_version,
+ const VbPublicKey* kernel_subkey,
+ const VbSignature* body_signature,
+ const VbPrivateKey* signing_key);
+
+
+/* Creates a kernel preamble, signed with [signing_key].
+ * Caller owns the returned pointer, and must free it with Free().
+ *
+ * Returns NULL if error. */
+VbKernelPreambleHeader* CreateKernelPreamble(
+ uint64_t kernel_version,
+ uint64_t body_load_address,
+ uint64_t bootloader_address,
+ uint64_t bootloader_size,
+ const VbSignature* body_signature,
+ const VbPrivateKey* signing_key);
+
+#endif /* VBOOT_REFERENCE_HOST_COMMON_H_ */
« no previous file with comments | « host/Makefile ('k') | host/include/host_key.h » ('j') | host/lib/host_key.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698