open-vault/sdk/physical/entry.go

12 lines
232 B
Go
Raw Normal View History

2019-04-13 02:56:04 +00:00
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
}