Home | History | Annotate | Download | only in trunks
      1 option optimize_for = LITE_RUNTIME;
      2 package trunks;
      3 
      4 // The messages in this file correspond to the trunksd IPC interface. Each
      5 // exported method is represented here by a request and response protobuf.
      6 
      7 // Inputs for the SendCommand method.
      8 message SendCommandRequest {
      9   // The raw bytes of a TPM command.
     10   optional bytes command = 1;
     11 }
     12 
     13 // Outputs for the SendCommand method.
     14 message SendCommandResponse {
     15   // The raw bytes of a TPM response.
     16   optional bytes response = 1;
     17 }
     18