mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
f9a581f329
* Move file watcher and validator to internal * Add aTLS endpoint to KMS for Kubernetes external requests * Update Go version in Dockerfiles * Move most KMS packages to internal Signed-off-by: Daniel Weiße <dw@edgeless.systems>
19 lines
330 B
Protocol Buffer
19 lines
330 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package kms;
|
|
|
|
option go_package = "github.com/edgelesssys/constellation/kms/kmsproto";
|
|
|
|
service API {
|
|
rpc GetDataKey(GetDataKeyRequest) returns (GetDataKeyResponse);
|
|
}
|
|
|
|
message GetDataKeyRequest {
|
|
string data_key_id = 1;
|
|
uint32 length = 2;
|
|
}
|
|
|
|
message GetDataKeyResponse {
|
|
bytes data_key = 1;
|
|
}
|