install_attributes.proto 590 B

1234567891011121314151617181920
  1. // Copyright 2013 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. syntax = "proto2";
  5. option optimize_for = LITE_RUNTIME;
  6. package cryptohome;
  7. message SerializedInstallAttributes {
  8. message Attribute {
  9. required string name = 1;
  10. required bytes value = 2;
  11. }
  12. // Specifies the version of the install attributes used to write the file.
  13. // Should be incremented when fallback behavior is needed.
  14. optional uint32 version = 1 [default = 1];
  15. repeated Attribute attributes = 2;
  16. }