22 lines
362 B
Protocol Buffer
22 lines
362 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package arbiter.unseal;
|
|
|
|
import "google/protobuf/empty.proto";
|
|
|
|
message UnsealStart {}
|
|
|
|
message UnsealStartResponse {
|
|
bytes pubkey = 1;
|
|
}
|
|
message UnsealEncryptedKey {
|
|
bytes key = 1;
|
|
}
|
|
|
|
enum UnsealResult {
|
|
UNSEAL_RESULT_UNSPECIFIED = 0;
|
|
UNSEAL_RESULT_SUCCESS = 1;
|
|
UNSEAL_RESULT_INVALID_KEY = 2;
|
|
UNSEAL_RESULT_UNBOOTSTRAPPED = 3;
|
|
}
|