blob: f4c788a347e096df4e6f276fa654e0c618598839 [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.
syntax = "proto2";
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;
}