From 7508aebf49d495bbe3a4a726d78fbbe738a8ebba Mon Sep 17 00:00:00 2001
From: "Richard T. Carback III" <rick.carback@gmail.com>
Date: Thu, 14 Jul 2022 21:15:57 +0000
Subject: [PATCH] Use the original prefix + key for the group elements

---
 storage/session.go | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/storage/session.go b/storage/session.go
index 1925d453b..13304ef7c 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 {
-- 
GitLab