aboutsummaryrefslogtreecommitdiff
path: root/crypto/crypto.go
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/crypto.go')
-rw-r--r--crypto/crypto.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/crypto.go b/crypto/crypto.go
index a226f26..c6d6619 100644
--- a/crypto/crypto.go
+++ b/crypto/crypto.go
@@ -63,6 +63,8 @@ var (
ErrKeyFree = util.SystemError("could not free memory of key")
ErrKeyringLocate = util.SystemError("could not locate the session keyring")
ErrKeyringInsert = util.SystemError("could not insert key into the session keyring")
+ ErrKeyringSearch = util.SystemError("could not find key in the session keyring")
+ ErrKeyringDelete = util.SystemError("could not delete key from the session keyring")
ErrRecoveryCode = errors.New("provided recovery code had incorrect format")
ErrLowEntropy = util.SystemError("insufficient entropy in pool to generate random bytes")
ErrRandNotSupported = util.SystemError("getrandom() not implemented; kernel must be v3.17 or later")