blob: 348504d96126f3e80b13068809130660245d7ca1 [file] [log] [blame] [edit]
// Copyright 2022 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
option optimize_for = LITE_RUNTIME;
package vtpm;
enum Version { V0 = 0; };
message BlobData {
// Currently unused. It is reserved for future proof, for we might have data
// migration.
Version version = 1;
bytes blob = 2;
}