Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Context ¶
type Context interface { // AuthenticatedData should return an array of bytes that describes the current value. If the value changes, // the transformer may report the value as unreadable or tampered. This may be nil if no such description exists // or is needed. For additional verification, set this to data that strongly identifies the value, such as // the key and creation version of the stored data. AuthenticatedData() []byte }
Context is additional information that a storage transformation may need to verify the data at rest.
type DefaultContext ¶
type DefaultContext []byte
DefaultContext is a simple implementation of Context for a slice of bytes.
func (DefaultContext) AuthenticatedData ¶
func (c DefaultContext) AuthenticatedData() []byte
AuthenticatedData returns itself.
type Transformer ¶
type Transformer interface { // TransformFromStorage may transform the provided data from its underlying storage representation or return an error. // Stale is true if the object on disk is stale and a write to etcd should be issued, even if the contents of the object // have not changed. TransformFromStorage(ctx context.Context, data []byte, dataCtx Context) (out []byte, stale bool, err error) // TransformToStorage may transform the provided data into the appropriate form in storage or return an error. TransformToStorage(ctx context.Context, data []byte, dataCtx Context) (out []byte, err error) }
Transformer allows a value to be transformed before being read from or written to the underlying store. The methods must be able to undo the transformation caused by the other.
Click to show internal directories.
Click to hide internal directories.