mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-08 16:09:36 -04:00
8 lines
152 B
Go
8 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")
|