constellation/state/keyservice/keyproto/keyservice.proto

17 lines
333 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package keyproto;
option go_package = "github.com/edgelesssys/constellation/state/keyservice/keyproto";
service API {
rpc PushStateDiskKey(PushStateDiskKeyRequest) returns (PushStateDiskKeyResponse);
}
message PushStateDiskKeyRequest {
bytes state_disk_key = 1;
}
message PushStateDiskKeyResponse {
}