mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-31 06:19:54 +00:00
17 lines
487 B
Protocol Buffer
17 lines
487 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package keyprovider;
|
|
option go_package = "keyprovider";
|
|
|
|
message keyProviderKeyWrapProtocolInput {
|
|
bytes KeyProviderKeyWrapProtocolInput = 1;
|
|
}
|
|
|
|
message keyProviderKeyWrapProtocolOutput {
|
|
bytes KeyProviderKeyWrapProtocolOutput = 1;
|
|
}
|
|
|
|
service KeyProviderService {
|
|
rpc WrapKey(keyProviderKeyWrapProtocolInput) returns (keyProviderKeyWrapProtocolOutput) {};
|
|
rpc UnWrapKey(keyProviderKeyWrapProtocolInput) returns (keyProviderKeyWrapProtocolOutput) {};
|
|
} |