mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
21 lines
401 B
Protocol Buffer
21 lines
401 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package recoverproto;
|
||
|
|
||
|
option go_package = "github.com/edgelesssys/constellation/disk-mapper/recoverproto";
|
||
|
|
||
|
service API {
|
||
|
rpc Recover(stream RecoverMessage) returns (stream RecoverResponse) {}
|
||
|
}
|
||
|
|
||
|
message RecoverMessage {
|
||
|
oneof request {
|
||
|
bytes state_disk_key = 1;
|
||
|
bytes measurement_secret = 2;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
message RecoverResponse {
|
||
|
string disk_uuid = 1;
|
||
|
}
|