From 4b8a6a3478509832e8629ab901e5f8f6b14ed0bd Mon Sep 17 00:00:00 2001 From: Todd Martin <106564991+trmartin4@users.noreply.github.com> Date: Mon, 29 Jan 2024 17:54:30 -0500 Subject: [PATCH] [PM-5638] Update minimum version for vault item encryption to 2024.2.0 (#2966) (cherry picked from commit de7ae27a7757e96664828dd9bf3d6d1844e0cd90) --- src/Core/Constants.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Constants.cs b/src/Core/Constants.cs index 2efd74cdc..c22fe6bb0 100644 --- a/src/Core/Constants.cs +++ b/src/Core/Constants.cs @@ -70,7 +70,7 @@ namespace Bit.Core public const int Argon2Parallelism = 4; public const int MasterPasswordMinimumChars = 12; public const int CipherKeyRandomBytesLength = 64; - public const string CipherKeyEncryptionMinServerVersion = "2024.1.3"; + public const string CipherKeyEncryptionMinServerVersion = "2024.2.0"; public const string DefaultFido2CredentialType = "public-key"; public const string DefaultFido2CredentialAlgorithm = "ECDSA"; public const string DefaultFido2CredentialCurve = "P-256";