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

Unified Diff: tpm_status.proto

Issue 3475009: Adds the necessary changes to tpm_init to allow triggered initialization. (Closed) Base URL: http://git.chromium.org/git/tpm_init.git
Patch Set: Address feedback. Created 10 years, 2 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 | « tpm_init.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tpm_status.proto
diff --git a/tpm_status.proto b/tpm_status.proto
new file mode 100644
index 0000000000000000000000000000000000000000..273faa2638f7865b02adc1cfed22f13656510896
--- /dev/null
+++ b/tpm_status.proto
@@ -0,0 +1,17 @@
+// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package tpm_init;
+
+message TpmStatus {
+ enum Flags {
+ NONE = 0;
+ OWNED_BY_THIS_INSTALL = 1;
+ USES_WELL_KNOWN_OWNER = 2;
+ USES_RANDOM_OWNER = 4;
+ }
+ required int32 flags = 1;
+ optional bytes delegation_credentials = 2;
+ optional bytes owner_password = 3;
+}
« no previous file with comments | « tpm_init.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698