mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-28 10:30:34 -04:00
13 lines
155 B
Protocol Buffer
13 lines
155 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package physical;
|
|
|
|
message SealWrapEntry {
|
|
bytes ciphertext = 1;
|
|
|
|
bytes iv = 2;
|
|
|
|
bytes hmac = 3;
|
|
|
|
bool wrapped = 4;
|
|
}
|