mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-13 04:09:36 +00:00
Bumps [github.com/containers/ocicrypt](https://github.com/containers/ocicrypt) from 1.0.3 to 1.1.0. - [Release notes](https://github.com/containers/ocicrypt/releases) - [Commits](https://github.com/containers/ocicrypt/compare/v1.0.3...v1.1.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
17 lines
No EOL
487 B
Protocol Buffer
17 lines
No EOL
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) {};
|
|
} |