| 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;
|
| +}
|
|
|