From f61fe4c8e4d282ccc71a2325cd343b5f37e69f42 Mon Sep 17 00:00:00 2001 From: Jason Sherman Date: Mon, 24 Jun 2024 10:32:05 -0700 Subject: [PATCH] remove db from encryption keys Signed-off-by: Jason Sherman --- app/src/components/encryptionService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/components/encryptionService.js b/app/src/components/encryptionService.js index 433f46884..2d1f77a0c 100644 --- a/app/src/components/encryptionService.js +++ b/app/src/components/encryptionService.js @@ -5,8 +5,8 @@ const SERVICE = 'EncryptionService'; const ENCRYPTION_KEYS = { PROXY: 'proxy', - DATABASE: 'db', }; + const ENCRYPTION_ALGORITHMS = { AES_256_GCM: 'aes-256-gcm', };