diff --git a/storage/session.go b/storage/session.go index 1925d453bf8066b22921958c35519842340b5eb9..13304ef7ca86aac8ac43d5a71f4a38c03d5ddf40 100644 --- a/storage/session.go +++ b/storage/session.go @@ -10,12 +10,13 @@ package storage import ( - "gitlab.com/elixxir/crypto/diffieHellman" "math/rand" "sync" "testing" "time" + "gitlab.com/elixxir/crypto/diffieHellman" + "gitlab.com/elixxir/client/storage/utility" "gitlab.com/xx_network/crypto/large" @@ -33,8 +34,8 @@ import ( ) const currentSessionVersion = 0 -const cmixGroupKey = "cmixGroup" -const e2eGroupKey = "e2eGroup" +const cmixGroupKey = "cmix/GroupKey" +const e2eGroupKey = "e2e/GroupKey" // Session object, backed by encrypted versioned.KVc type Session interface {