blob: 2b6219d406a2c2dda8008228c626cb93176f1e94 [file] [log] [blame]
// 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.
syntax = "proto2";
package cryptohome;
message TpmStatus {
enum Flags {
NONE = 0;
OWNED_BY_THIS_INSTALL = 1;
USES_WELL_KNOWN_OWNER = 2;
USES_RANDOM_OWNER = 4;
INSTALL_ATTRIBUTES_NEEDS_OWNER = 8;
ATTESTATION_NEEDS_OWNER = 16;
}
required int32 flags = 1;
optional bytes delegation_credentials = 2;
optional bytes owner_password = 3;
}