blob: 7250de124ea5dea6685ca2e9beac62e8f0ac0118 [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.
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;
}