From cac6be08e40e4e8c2674d9bb7bd9b92ea37d3125 Mon Sep 17 00:00:00 2001 From: "Richard T. Carback III" <rick.carback@gmail.com> Date: Thu, 14 Jul 2022 21:31:00 +0000 Subject: [PATCH] Fix e2eGroupKey --- storage/session.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/storage/session.go b/storage/session.go index 13304ef7c..d181f0742 100644 --- a/storage/session.go +++ b/storage/session.go @@ -34,8 +34,11 @@ import ( ) const currentSessionVersion = 0 + +// NOTE: These are set this way for legacy purposes. If you want to change them +// you will need to set up and upgrade path for old session files const cmixGroupKey = "cmix/GroupKey" -const e2eGroupKey = "e2e/GroupKey" +const e2eGroupKey = "e2eSession/Group" // Session object, backed by encrypted versioned.KVc type Session interface { -- GitLab