Support for wrapped_secrets containing versioning and MIME info.

This commit is contained in:
Frederic Jacobs
2017-01-05 20:57:10 +01:00
committed by GitHub
parent ef4d525703
commit 4b73faf3e4
43 changed files with 2902 additions and 396 deletions

11
protobuf/Secret.proto Normal file
View File

@ -0,0 +1,11 @@
syntax = "proto3";
enum RustySecretsVersions {
INITIAL_RELEASE = 0;
}
message RustySecret {
RustySecretsVersions version = 1;
bytes secret = 2;
string mime_type = 3;
}