Remove EncryptedBlobInfo in Entry
This commit is contained in:
parent
aeac23d59e
commit
31b6345c31
|
@ -1,7 +1,5 @@
|
|||
package physical
|
||||
|
||||
import wrapping "github.com/hashicorp/go-kms-wrapping"
|
||||
|
||||
// Entry is used to represent data stored by the physical backend
|
||||
type Entry struct {
|
||||
Key string
|
||||
|
@ -10,10 +8,4 @@ type Entry struct {
|
|||
|
||||
// Only used in replication
|
||||
ValueHash []byte
|
||||
|
||||
// The bool above is an easy control for whether it should be enabled; it
|
||||
// is used to carry information about whether seal wrapping is *desired*
|
||||
// regardless of whether it's currently available. The struct below stores
|
||||
// needed information when it's actually performed.
|
||||
SealWrapInfo *wrapping.EncryptedBlobInfo `json:"seal_wrap_info,omitempty"`
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue