From 5e8dfc196020693d2a9dc809cf6bc87096ddc09f Mon Sep 17 00:00:00 2001 From: "Joe Richey joerichey@google.com" Date: Tue, 15 Aug 2017 12:06:11 -0700 Subject: crypto: Switch from session to user keyring --- crypto/crypto.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'crypto/crypto.go') 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) -- cgit v1.2.3