blob: 112286c2d56c3dc610ffe2adf26e221f6d8ce886 [file] [log] [blame]
// Copyright 2022 The Chromium OS 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 = "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;
}