blob: 135d2bd7027406a9da7dc925841e71fc08d02e4d [file] [log] [blame]
// 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 = "proto2";
option optimize_for = LITE_RUNTIME;
package vtpm;
// The messages in this file correspond to the vtpmd IPC interface. Each
// exported method is represented here by a request and response protobuf.
// Inputs for the SendCommand method.
message SendCommandRequest {
// The raw bytes of a TPM command.
optional bytes command = 1;
}
// Outputs for the SendCommand method.
message SendCommandResponse {
// The raw bytes of a TPM response.
optional bytes response = 1;
}