mirror of
https://github.com/mii443/RustySecrets.git
synced 2025-08-22 16:25:32 +00:00
Support for wrapped_secrets containing versioning and MIME info.
This commit is contained in:
11
protobuf/Secret.proto
Normal file
11
protobuf/Secret.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
enum RustySecretsVersions {
|
||||
INITIAL_RELEASE = 0;
|
||||
}
|
||||
|
||||
message RustySecret {
|
||||
RustySecretsVersions version = 1;
|
||||
bytes secret = 2;
|
||||
string mime_type = 3;
|
||||
}
|
Reference in New Issue
Block a user