mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-12 09:24:24 -05:00
f9a581f329
* Move file watcher and validator to internal * Add aTLS endpoint to KMS for Kubernetes external requests * Update Go version in Dockerfiles * Move most KMS packages to internal Signed-off-by: Daniel Weiße <dw@edgeless.systems>
9 lines
152 B
Go
9 lines
152 B
Go
package storage
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// ErrDEKUnset indicates if a key is not found in storage.
|
|
var ErrDEKUnset = errors.New("requested DEK not set")
|