aboutsummaryrefslogtreecommitdiff
path: root/crypto/crypto.go
diff options
context:
space:
mode:
authorJoseph Richey <joerichey@google.com>2017-08-15 13:46:32 -0700
committerGitHub <noreply@github.com>2017-08-15 13:46:32 -0700
commitb4d51e0f4d34dbfd78e23662f3dfd90e86ae5e48 (patch)
tree0346d37cd67541265e47effd5425d039d396ea8c /crypto/crypto.go
parent1281987135c92ca6187e48bc24a824a7a2efa4e5 (diff)
parent5e8dfc196020693d2a9dc809cf6bc87096ddc09f (diff)
Merge pull request #37 from google/keyring
crypto: Switch from session to user keyring
Diffstat (limited to 'crypto/crypto.go')
-rw-r--r--crypto/crypto.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/crypto/crypto.go b/crypto/crypto.go
index e66b0dd..b6368ce 100644
--- a/crypto/crypto.go
+++ b/crypto/crypto.go
@@ -63,10 +63,9 @@ var (
ErrGetrandomFail = util.SystemError("getrandom() failed")
ErrKeyAlloc = util.SystemError("could not allocate memory for key")
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")
+ ErrKeyringInsert = util.SystemError("could not insert key into the keyring")
ErrKeyringSearch = errors.New("could not find key with descriptor")
- ErrKeyringDelete = util.SystemError("could not delete key from the session keyring")
+ ErrKeyringDelete = util.SystemError("could not delete key from the keyring")
)
// panicInputLength panics if "name" has invalid length (expected != actual)