From 96f1aa073c6d9c772aa87abd7bb0057b69d95e8f Mon Sep 17 00:00:00 2001 From: Merissa Weinstein Date: Tue, 18 Jun 2024 12:11:10 -0500 Subject: [PATCH] [PM-8391] turn on enableCipherKeyEncryption flag (#9362) * turn on enableCipherKeyEncryption flag * turn enableCipherKeyEncryption flag on in desktop config --------- Co-authored-by: bnagawiecki <107435978+bnagawiecki@users.noreply.github.com> --- apps/browser/config/base.json | 2 +- apps/browser/config/development.json | 2 +- apps/browser/config/production.json | 2 +- apps/cli/config/development.json | 2 +- apps/cli/config/production.json | 2 +- apps/desktop/config/base.json | 2 +- apps/desktop/config/development.json | 2 +- apps/desktop/config/production.json | 2 +- apps/web/config/base.json | 2 +- apps/web/config/cloud.json | 2 +- apps/web/config/development.json | 2 +- apps/web/config/euprd.json | 2 +- apps/web/config/qa.json | 2 +- apps/web/config/selfhosted.json | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/apps/browser/config/base.json b/apps/browser/config/base.json index 6c428c43d2..b6f24bf9ae 100644 --- a/apps/browser/config/base.json +++ b/apps/browser/config/base.json @@ -2,7 +2,7 @@ "devFlags": {}, "flags": { "showPasswordless": true, - "enableCipherKeyEncryption": false, + "enableCipherKeyEncryption": true, "accountSwitching": false } } diff --git a/apps/browser/config/development.json b/apps/browser/config/development.json index e0925ebecc..950c5372d8 100644 --- a/apps/browser/config/development.json +++ b/apps/browser/config/development.json @@ -7,7 +7,7 @@ }, "flags": { "showPasswordless": true, - "enableCipherKeyEncryption": false, + "enableCipherKeyEncryption": true, "accountSwitching": true } } diff --git a/apps/browser/config/production.json b/apps/browser/config/production.json index 027003f6c7..64c6cb92a3 100644 --- a/apps/browser/config/production.json +++ b/apps/browser/config/production.json @@ -1,6 +1,6 @@ { "flags": { - "enableCipherKeyEncryption": false, + "enableCipherKeyEncryption": true, "accountSwitching": true } } diff --git a/apps/cli/config/development.json b/apps/cli/config/development.json index f57c3d9bc3..bc06f69d65 100644 --- a/apps/cli/config/development.json +++ b/apps/cli/config/development.json @@ -1,5 +1,5 @@ { "flags": { - "enableCipherKeyEncryption": false + "enableCipherKeyEncryption": true } } diff --git a/apps/cli/config/production.json b/apps/cli/config/production.json index f57c3d9bc3..bc06f69d65 100644 --- a/apps/cli/config/production.json +++ b/apps/cli/config/production.json @@ -1,5 +1,5 @@ { "flags": { - "enableCipherKeyEncryption": false + "enableCipherKeyEncryption": true } } diff --git a/apps/desktop/config/base.json b/apps/desktop/config/base.json index 1f4f624dc8..2c7b4dcae1 100644 --- a/apps/desktop/config/base.json +++ b/apps/desktop/config/base.json @@ -2,6 +2,6 @@ "devFlags": {}, "flags": { "multithreadDecryption": false, - "enableCipherKeyEncryption": false + "enableCipherKeyEncryption": true } } diff --git a/apps/desktop/config/development.json b/apps/desktop/config/development.json index 7a8659feff..7f18c63878 100644 --- a/apps/desktop/config/development.json +++ b/apps/desktop/config/development.json @@ -1,6 +1,6 @@ { "devFlags": {}, "flags": { - "enableCipherKeyEncryption": false + "enableCipherKeyEncryption": true } } diff --git a/apps/desktop/config/production.json b/apps/desktop/config/production.json index f57c3d9bc3..bc06f69d65 100644 --- a/apps/desktop/config/production.json +++ b/apps/desktop/config/production.json @@ -1,5 +1,5 @@ { "flags": { - "enableCipherKeyEncryption": false + "enableCipherKeyEncryption": true } } diff --git a/apps/web/config/base.json b/apps/web/config/base.json index 5dc03a4633..b9102a769d 100644 --- a/apps/web/config/base.json +++ b/apps/web/config/base.json @@ -12,6 +12,6 @@ }, "flags": { "showPasswordless": false, - "enableCipherKeyEncryption": false + "enableCipherKeyEncryption": true } } diff --git a/apps/web/config/cloud.json b/apps/web/config/cloud.json index 3faa292692..c8ba07e755 100644 --- a/apps/web/config/cloud.json +++ b/apps/web/config/cloud.json @@ -18,6 +18,6 @@ }, "flags": { "showPasswordless": true, - "enableCipherKeyEncryption": false + "enableCipherKeyEncryption": true } } diff --git a/apps/web/config/development.json b/apps/web/config/development.json index 44391a7450..3fcd8641b3 100644 --- a/apps/web/config/development.json +++ b/apps/web/config/development.json @@ -21,7 +21,7 @@ ], "flags": { "showPasswordless": true, - "enableCipherKeyEncryption": false + "enableCipherKeyEncryption": true }, "devFlags": {} } diff --git a/apps/web/config/euprd.json b/apps/web/config/euprd.json index 72f0c1857d..2d554e5704 100644 --- a/apps/web/config/euprd.json +++ b/apps/web/config/euprd.json @@ -12,6 +12,6 @@ }, "flags": { "showPasswordless": true, - "enableCipherKeyEncryption": false + "enableCipherKeyEncryption": true } } diff --git a/apps/web/config/qa.json b/apps/web/config/qa.json index ac36b10784..f03d47fe4e 100644 --- a/apps/web/config/qa.json +++ b/apps/web/config/qa.json @@ -28,6 +28,6 @@ ], "flags": { "showPasswordless": true, - "enableCipherKeyEncryption": false + "enableCipherKeyEncryption": true } } diff --git a/apps/web/config/selfhosted.json b/apps/web/config/selfhosted.json index 7e916a1116..121f59ba0b 100644 --- a/apps/web/config/selfhosted.json +++ b/apps/web/config/selfhosted.json @@ -8,6 +8,6 @@ }, "flags": { "showPasswordless": true, - "enableCipherKeyEncryption": false + "enableCipherKeyEncryption": true } }