mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-10 00:27:02 +02:00
12 lines
232 B
Go
12 lines
232 B
Go
package physical
|
|
|
|
// Entry is used to represent data stored by the physical backend
|
|
type Entry struct {
|
|
Key string
|
|
Value []byte
|
|
SealWrap bool `json:"seal_wrap,omitempty"`
|
|
|
|
// Only used in replication
|
|
ValueHash []byte
|
|
}
|