
Older versions transitively dragged in k8s.io/kubernetes, the newer versions do not. Signed-off-by: Davanum Srinivas <davanum@gmail.com>
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) {};
|
|
} |