blob: b9288982decbfa79b30e1ca4003cd9f0d70278fe [file] [log] [blame]
// Copyright (c) 2011 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 SerializedInstallAttributes {
message Attribute {
required string name = 1;
required bytes value = 2;
}
// Specifies the version of the install attributes used to write the file.
// Should be incremented when fallback behavior is needed.
required uint32 version = 1 [default=1];
repeated Attribute attributes = 2;
}