mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
e7fc541a57
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
19 lines
339 B
Protocol Buffer
19 lines
339 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package kms;
|
|
|
|
option go_package = "github.com/edgelesssys/constellation/v2/keyservice/keyserviceproto";
|
|
|
|
service API {
|
|
rpc GetDataKey(GetDataKeyRequest) returns (GetDataKeyResponse);
|
|
}
|
|
|
|
message GetDataKeyRequest {
|
|
string data_key_id = 1;
|
|
uint32 length = 2;
|
|
}
|
|
|
|
message GetDataKeyResponse {
|
|
bytes data_key = 1;
|
|
}
|