blob: 6fe6788062738c0fee88913e900aff255dfd186e [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;
}