open-vault/physical/types.proto
Chris Hoffman 5344b7c5ae
adding option go_package to protos (#4687)
* adding option go_package to protos

* switching proto output dir to relative paths
2018-06-04 10:19:26 -04:00

16 lines
215 B
Protocol Buffer

syntax = "proto3";
option go_package = "github.com/hashicorp/vault/physical";
package physical;
message SealWrapEntry {
bytes ciphertext = 1;
bytes iv = 2;
bytes hmac = 3;
bool wrapped = 4;
}