Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 package tpm_init; | |
| 6 | |
| 7 message TpmStatus { | |
| 8 enum Flags { | |
| 9 NONE = 0; | |
| 10 OWNED_BY_THIS_INSTALL = 1; | |
| 11 USES_WELL_KNOWN_OWNER = 2; | |
| 12 USES_RANDOM_OWNER = 4; | |
| 13 } | |
| 14 required int32 flags = 1; | |
| 15 optional bytes delegation_credentials = 2; | |
| 16 optional bytes owner_password = 3; | |
| 17 } | |
| OLD | NEW |