You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
481 B
17 lines
481 B
option optimize_for = LITE_RUNTIME; |
|
package trunks; |
|
|
|
// The messages in this file correspond to the trunksd 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; |
|
}
|
|
|