mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-31 19:41:12 +02:00
16 lines
215 B
Protocol Buffer
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;
|
|
}
|