mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-21 21:55:27 -05:00
152e3985f7
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
17 lines
333 B
Protocol Buffer
17 lines
333 B
Protocol Buffer
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 {
|
|
}
|