mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
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")
|